From ab026c8be0b07b7f8ac7c8779637c685aef8232c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 25 Jul 2026 09:51:05 +0200 Subject: [PATCH] Move support to create custom tags from experimental to general availability --- .../create-or-update-account-dialog.component.ts | 2 +- .../create-or-update-activity-dialog.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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';