bug fixes file deletions and more

This commit is contained in:
Zoe
2024-09-09 01:35:33 -05:00
parent 86ef860568
commit 70a9bcd904
14 changed files with 325 additions and 51 deletions

View File

@@ -19,7 +19,6 @@ const percentage = computed(() => {
return (props.usageBytes / capacityBytes.value);
});
console.log(percentage.value, props.usageBytes, capacityBytes.value)
const offset = computed(() => {
return circumference - percentage.value * circumference;
});
@@ -30,10 +29,6 @@ const capacity = computed(() => {
return formatBytes(capacityBytes.value)
});
if (props.usageBytes > capacityBytes.value) {
console.log("SCAN SCAN SCAM SCAM")
}
const isAllFilesActive = computed(() => route.path === '/home');
const isInFolder = computed(() => route.path.startsWith('/home/') && route.path !== '/home');