diff options
author | Rafael Marçalo <raroma09@gmail.com> | 2022-10-26 15:06:40 +0100 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2022-10-26 15:06:40 +0100 |
commit | 1d0c0046a434dd3171b3d22818204fcf9daf1413 (patch) | |
tree | cc572b36103eecfede0c38613a55dd07c1aa5bb4 /routes/info.js | |
parent | 5dba81f9173fa96edb53645a5a2081e9408de69e (diff) |
Added search bar to some of the views
Diffstat (limited to 'routes/info.js')
-rw-r--r-- | routes/info.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/info.js b/routes/info.js index 820b674..2b0687a 100644 --- a/routes/info.js +++ b/routes/info.js @@ -2,7 +2,7 @@ function info(req, res) { - res.render('info'); + res.render('info', {showSearchBar: true}); }; module.exports = info; |