chore: fix frontend lint
This commit is contained in:
@@ -413,7 +413,7 @@ const toggleNavigation = throttle(function () {
|
||||
clearTimeout(navTimeout.value);
|
||||
}
|
||||
|
||||
navTimeout.value = setTimeout(() => {
|
||||
navTimeout.value = window.setTimeout(() => {
|
||||
showNav.value = false || hoverNav.value;
|
||||
navTimeout.value = null;
|
||||
}, 1500);
|
||||
|
||||
@@ -273,7 +273,7 @@ const formattedChunkSize = computed({
|
||||
}
|
||||
|
||||
// Set a new timeout to apply the format after a short delay
|
||||
debounceTimeout.value = setTimeout(() => {
|
||||
debounceTimeout.value = window.setTimeout(() => {
|
||||
if (settings.value) settings.value.tus.chunkSize = parseBytes(value);
|
||||
}, 1500);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user