From f61e6d61dd8cb33172607083932bf3e602a44e52 Mon Sep 17 00:00:00 2001 From: Aleksey Potsetsuev Date: Thu, 28 Sep 2023 14:56:50 +0200 Subject: [PATCH] CB-3456 fix: handle form part exceptions on save --- webapp/packages/core-ui/src/Form/FormPart.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/packages/core-ui/src/Form/FormPart.ts b/webapp/packages/core-ui/src/Form/FormPart.ts index 244c4f4d9f..78d0418a6e 100644 --- a/webapp/packages/core-ui/src/Form/FormPart.ts +++ b/webapp/packages/core-ui/src/Form/FormPart.ts @@ -91,6 +91,7 @@ export abstract class FormPart implements IFormPar this.exception = null; } catch (exception: any) { this.exception = exception; + throw exception; } finally { this.loading = false; }