From 21ecd67051e0feb4e0b31598a99555a21b993121 Mon Sep 17 00:00:00 2001 From: mkovalua Date: Mon, 24 Nov 2025 16:24:11 +0200 Subject: [PATCH] avoid check because registration will have always at least one contributor and contributors may not load syncronically after step change --- .../features/registries/components/drafts/drafts.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/features/registries/components/drafts/drafts.component.ts b/src/app/features/registries/components/drafts/drafts.component.ts index 353456834..a1d9fd448 100644 --- a/src/app/features/registries/components/drafts/drafts.component.ts +++ b/src/app/features/registries/components/drafts/drafts.component.ts @@ -74,8 +74,7 @@ export class DraftsComponent implements OnDestroy { !this.draftRegistration()?.title || !this.draftRegistration()?.description || !this.registrationLicense() || - !this.selectedSubjects()?.length || - !this.initialContributors()?.length + !this.selectedSubjects()?.length ); });