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) {
if (!file.parentPath || file.parentPath === '') {
return [file.name];
return file.name;
} else {
return `${file.parentPath}/${file.name}`;
}