From 55ebf3283c58deef109c22472020f2864c003e26 Mon Sep 17 00:00:00 2001 From: Igor Kulman Date: Sun, 24 Aug 2025 18:13:20 +0200 Subject: [PATCH] Do not append subtitle to document title when empty --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 364c611..0c3e15e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -186,7 +186,7 @@ export default { document.title = this.config.documentTitle || - `${this.config.title} | ${this.config.subtitle}`; + [this.config.title, this.config.subtitle].filter(Boolean).join(" | "); if (this.config.stylesheet) { let stylesheet = ""; let addtionnal_styles = this.config.stylesheet;