From 13150aca0d281edd22764541d7296d309bd2284c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Losada=20Hern=C3=A1ndez?= Date: Sun, 22 Mar 2026 02:27:38 +0100 Subject: [PATCH] if no title still append prefix --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 9a6a7eca6..0719e622a 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,9 @@ if (title) { document.title = `${prefix}${title} - The Homebrewery`; - } + } else { + document.title = `${prefix} - The Homebrewery`; + } if (window.location.pathname.startsWith('/admin')) { import('/client/admin/main.jsx');