mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-17 18:52:06 +00:00
chore: pass ZoneLoading error as result
This commit is contained in:
@@ -12,8 +12,8 @@ async function onOpenFastfileClick() {
|
||||
loadingFastFile.value = true;
|
||||
|
||||
webviewBinds.loadFastFile(lastPath.value)
|
||||
.catch((e) => {
|
||||
console.error("Failed to load fastfile", e);
|
||||
.catch((e: string) => {
|
||||
console.error("Failed to load fastfile:", e);
|
||||
})
|
||||
.finally(() => {
|
||||
loadingFastFile.value = false;
|
||||
|
||||
Reference in New Issue
Block a user