merge: Bridged error message for when you try search for a post and it fails (!421)

View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/421

Approved-by: dakkar <dakkar@thenautilus.net>
Approved-by: Marie <marie@kaifa.ch>
This commit is contained in:
Marie 2024-02-19 08:33:10 +00:00
commit 764bbcf05b
1 changed files with 11 additions and 4 deletions

View File

@ -108,12 +108,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の変更が伝播しない)