From e3d227ca254652c6a28d73ce8ff41b7fd83df9fc Mon Sep 17 00:00:00 2001 From: PhilReact Date: Tue, 19 Sep 2023 01:07:17 -0500 Subject: [PATCH] fix name tab when using url input --- core/src/components/show-plugin.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/components/show-plugin.js b/core/src/components/show-plugin.js index 953302bc..ad0430bb 100644 --- a/core/src/components/show-plugin.js +++ b/core/src/components/show-plugin.js @@ -2276,10 +2276,10 @@ class NavBar extends connect(store)(LitElement) { if (service === "APP") { this.changePage({ - "url": "qapp", + "url": "myapp", "domain": "core", "page": `qdn/browser/index.html${query}`, - "title": "Q-App", + "title": name || "Q-App", "icon": "vaadin:external-browser", "mwcicon": "open_in_browser", "menus": [], @@ -2287,10 +2287,10 @@ class NavBar extends connect(store)(LitElement) { }) } else if (service === "WEBSITE") { this.changePage({ - "url": "websites", + "url": "myapp", "domain": "core", "page": `qdn/browser/index.html${query}`, - "title": "Website", + "title": name || "Website", "icon": "vaadin:desktop", "mwcicon": "desktop_mac", "menus": [],