From 2f430d02a42dce66b9ad1c1f2982c52bc9cc1c50 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Fri, 14 Oct 2022 16:58:31 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9A=20=D0=BF=D1=80=D0=B5=D0=B4=D1=8B=D0=B4?= =?UTF-8?q?=D1=83=D1=89=D0=B5=D0=BC=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/App.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/components/App.vue b/client/components/App.vue index b163c00..7c93bc8 100644 --- a/client/components/App.vue +++ b/client/components/App.vue @@ -102,9 +102,7 @@ class App { } setAppTitle(title) { - if (!title) { - document.title = 'inpx-web'; - } else { + if (title) { document.title = title; } }