diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts index 74be2f3c18..de0172eace 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts @@ -65,7 +65,7 @@ export class GfCreateOrUpdateAccountDialogComponent { protected accountForm: FormGroup; protected currencies: string[] = []; protected filteredPlatforms: Observable | undefined; - protected hasPermissionToCreateOwnTag: boolean | undefined; + protected hasPermissionToCreateOwnTag: boolean; protected platforms: Platform[] = []; protected tagsAvailable: Tag[] = []; diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts index 6ef83e6e2c..79e1e8983d 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts @@ -92,7 +92,7 @@ export class GfCreateOrUpdateActivityDialogComponent { protected currentMarketPrice: number | null = null; protected defaultDateFormat: string; protected defaultLookupItems: LookupItem[] = []; - protected hasPermissionToCreateOwnTag: boolean | undefined; + protected hasPermissionToCreateOwnTag: boolean; protected isLoading = false; protected readonly isToday = isToday; protected mode: 'create' | 'update';