fix step up button

This commit is contained in:
Salem Yaslem 2023-06-03 06:40:47 +03:00
parent f3e4f4923a
commit f30c5104a0

View File

@ -92,7 +92,7 @@ function stepUp(path: string) {
pathArray.pop();
}
pathArray.pop();
return (pathArray.join("/") || "") + "/";
return (pathArray.join("/") || "/");
}
</script>