From 600f98ddabec8c8d00c3e709f1d55c1c3c77bce6 Mon Sep 17 00:00:00 2001 From: CalDescent Date: Sun, 29 Jan 2023 13:38:08 +0000 Subject: [PATCH] Fixed bug in extractComponents() --- src/main/resources/q-apps/q-apps.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/q-apps/q-apps.js b/src/main/resources/q-apps/q-apps.js index 823c549d..626f2b4b 100644 --- a/src/main/resources/q-apps/q-apps.js +++ b/src/main/resources/q-apps/q-apps.js @@ -82,6 +82,9 @@ function extractComponents(url) { // Identifier exists, so don't include it in the path parts.shift(); } + else { + identifier = null; + } } const path = parts.join("/");