From fb3901505686231a5a7c4b43cc5cf4fd658fdc50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?John=20Molakvo=C3=A6?= Date: Thu, 7 Dec 2023 12:28:23 +0100 Subject: [PATCH] fix(files): navigation exact MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- apps/files/src/views/Navigation.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/src/views/Navigation.vue b/apps/files/src/views/Navigation.vue index 7579449e663..9e7a630128e 100644 --- a/apps/files/src/views/Navigation.vue +++ b/apps/files/src/views/Navigation.vue @@ -27,10 +27,11 @@ :key="view.id" :allow-collapse="true" :data-cy-files-navigation-item="view.id" + :exact="true" :icon="view.iconClass" + :name="view.name" :open="isExpanded(view)" :pinned="view.sticky" - :name="view.name" :to="generateToNavigation(view)" @update:open="onToggleExpand(view)"> -- 2.39.5