Fix calendar event creation error handling (#14603)

This commit is contained in:
Allen Porter 2022-12-07 08:39:22 -08:00 committed by GitHub
parent ef130be352
commit efda2ab626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -432,6 +432,7 @@ class DialogCalendarEventEditor extends LitElement {
);
} catch (err: any) {
this._error = err ? err.message : "Unknown error";
return;
} finally {
this._submitting = false;
}