From 27286998f776fb9300218f6822f15c19d8fc4d25 Mon Sep 17 00:00:00 2001 From: lotte Date: Wed, 27 Mar 2024 14:15:20 +0100 Subject: [PATCH] 113500: Fixed lint error (cherry picked from commit 722bd6f7f5e2b7240b6d038d83342c1c15ebae57) --- src/app/submission/sections/form/section-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/submission/sections/form/section-form.component.ts b/src/app/submission/sections/form/section-form.component.ts index 8e12f81097..4cbb97fd1f 100644 --- a/src/app/submission/sections/form/section-form.component.ts +++ b/src/app/submission/sections/form/section-form.component.ts @@ -328,7 +328,7 @@ export class SubmissionSectionFormComponent extends SectionModelComponent { updateForm(sectionState: SubmissionSectionObject): void { const sectionData = sectionState.data as WorkspaceitemSectionFormObject; - const errors = sectionState.errorsToShow + const errors = sectionState.errorsToShow; if (isNotEmpty(sectionData) && !isEqual(sectionData, this.sectionData.data)) { this.sectionData.data = sectionData;