From 54921a998a3dc7f63f1a2be91032accd2be78987 Mon Sep 17 00:00:00 2001 From: David Bolack Date: Thu, 25 Jan 2024 19:51:03 -0600 Subject: [PATCH] Clone tags along with the rest of the brew --- server/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/app.js b/server/app.js index 970c2cd9c..fc5d4a035 100644 --- a/server/app.js +++ b/server/app.js @@ -304,7 +304,8 @@ app.get('/new/:id', asyncHandler(getBrew('share')), (req, res, next)=>{ text : req.brew.text, style : req.brew.style, renderer : req.brew.renderer, - theme : req.brew.theme + theme : req.brew.theme, + tags : req.brew.tags }; req.brew = _.defaults(brew, DEFAULT_BREW);