mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:13:08 +02:00
Seemed to have fixed it
This commit is contained in:
parent
441523b6d4
commit
6240f78c83
1 changed files with 11 additions and 4 deletions
|
@ -107,12 +107,19 @@ export function promiseDialog<T extends Promise<any>>(
|
|||
showing.value = false;
|
||||
if (onFailure) {
|
||||
onFailure(err);
|
||||
} else {
|
||||
if (err.message) {
|
||||
alert({
|
||||
type: 'error',
|
||||
text: err.message,
|
||||
});
|
||||
} else {
|
||||
alert({
|
||||
type: 'error',
|
||||
text: err,
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// NOTE: dynamic importすると挙動がおかしくなる(showingの変更が伝播しない)
|
||||
|
|
Loading…
Reference in a new issue