Skip to content

Commit

Permalink
CB-3456 fix: handle form part exceptions on save
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Sep 28, 2023
1 parent 92735f1 commit f61e6d6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions webapp/packages/core-ui/src/Form/FormPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export abstract class FormPart<TPartState, TFormState = any> implements IFormPar
this.exception = null;
} catch (exception: any) {
this.exception = exception;
throw exception;
} finally {
this.loading = false;
}
Expand Down

0 comments on commit f61e6d6

Please sign in to comment.