From 9107819cf136b8378e2290bae165b289c3ce03c2 Mon Sep 17 00:00:00 2001 From: Soufiane Fariss Date: Thu, 1 Aug 2024 19:13:23 +0200 Subject: [PATCH] fix: force reload page on import analysis --- webui/src/components/NavBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/components/NavBar.vue b/webui/src/components/NavBar.vue index 313934741..be3fc5e07 100644 --- a/webui/src/components/NavBar.vue +++ b/webui/src/components/NavBar.vue @@ -7,7 +7,7 @@ const items = ref([ { label: 'Import Analysis', icon: 'pi pi-file-import', - command: () => window.location.replace(window.location.origin) + command: () => window.location.replace(window.location.origin + '/capa/') // reload the page } ])