fix while uncheck

This commit is contained in:
GMrrc 2024-12-11 16:07:36 +01:00
parent dd4521324c
commit 8aea56cf3b

View File

@ -252,7 +252,7 @@ export default {
}, },
getFullPath(file) { getFullPath(file) {
if (!file.parentPath || file.parentPath === '') { if (!file.parentPath || file.parentPath === '') {
return [file.name]; return file.name;
} else { } else {
return `${file.parentPath}/${file.name}`; return `${file.parentPath}/${file.name}`;
} }