From 8aea56cf3b6730bf476465245cc4a96a6f1390b4 Mon Sep 17 00:00:00 2001 From: GMrrc <143954951+GMrrc@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:07:36 +0100 Subject: [PATCH] fix while uncheck --- src/components/WebContentViewer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WebContentViewer.vue b/src/components/WebContentViewer.vue index 11db017..4a60a8a 100644 --- a/src/components/WebContentViewer.vue +++ b/src/components/WebContentViewer.vue @@ -252,7 +252,7 @@ export default { }, getFullPath(file) { if (!file.parentPath || file.parentPath === '') { - return [file.name]; + return file.name; } else { return `${file.parentPath}/${file.name}`; }