0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

replace :- with just -

This commit is contained in:
Trevor Buckner
2021-07-30 17:29:36 -04:00
parent db3bec9e2b
commit ebd28f41a2

View File

@@ -170,7 +170,7 @@ app.get('/edit/:id', asyncHandler(async (req, res, next)=>{
//New Page
app.get('/new/:id', asyncHandler(async (req, res, next)=>{
const brew = await getBrewFromId(req.params.id, 'share');
brew.title = `CLONE:- ${brew.title}`;
brew.title = `CLONE - ${brew.title}`;
req.brew = brew;
return next();
}));