fix: bad assignment logic in middleware.renderHeader

v1.18.x
Julian Lam 4 years ago
parent 75b1bbd09f
commit 34ccabe3ab

@ -80,7 +80,7 @@ middleware.renderHeader = async (req, res, data) => {
templateValues.template[res.locals.template] = true; templateValues.template[res.locals.template] = true;
// Normally this should hook be automatically added by middleware.processRender(), but it seems to only be fired for page hooks, and not when called internally. // Normally this should hook be automatically added by middleware.processRender(), but it seems to only be fired for page hooks, and not when called internally.
({ templateValues } = await plugins.hooks.fire('filter:admin/header.build', { req, res, templateData: templateValues })); ({ templateData: templateValues } = await plugins.hooks.fire('filter:admin/header.build', { req, res, templateData: templateValues }));
return await req.app.renderAsync('admin/header', templateValues); return await req.app.renderAsync('admin/header', templateValues);
}; };

Loading…
Cancel
Save