From 67e18a659de96def3d58c68a59edc7ba981b789b Mon Sep 17 00:00:00 2001 From: MiragonMx <80544476+MiragonMx@users.noreply.github.com> Date: Sun, 18 Aug 2024 16:49:53 +0200 Subject: [PATCH] fix: change boolean member name to more consistent 'is' variant --- src/app/features/issue/providers/github/github.const.ts | 4 ++-- src/app/features/issue/providers/github/github.model.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/features/issue/providers/github/github.const.ts b/src/app/features/issue/providers/github/github.const.ts index 7a91b6e0c38..28f8c8f9ddb 100644 --- a/src/app/features/issue/providers/github/github.const.ts +++ b/src/app/features/issue/providers/github/github.const.ts @@ -15,7 +15,7 @@ export const DEFAULT_GITHUB_CFG: GithubCfg = { isAutoAddToBacklog: false, filterUsername: null, filterIssuesAssignedToMe: false, - importLabelsAsTags: false, + isImportLabelsAsTags: false, }; // NOTE: we need a high limit because git has low usage limits :( @@ -99,7 +99,7 @@ export const GITHUB_CONFIG_FORM: LimitedFormlyFieldConfig[] = [ }, }, { - key: 'importLabelsAsTags', + key: 'isImportLabelsAsTags', type: 'checkbox', hideExpression: (model: any) => !model.isEnabled, templateOptions: { diff --git a/src/app/features/issue/providers/github/github.model.ts b/src/app/features/issue/providers/github/github.model.ts index 73aa6c32296..e68e61af769 100644 --- a/src/app/features/issue/providers/github/github.model.ts +++ b/src/app/features/issue/providers/github/github.model.ts @@ -8,5 +8,5 @@ export interface GithubCfg extends BaseIssueProviderCfg { repo: string | null; token: string | null; filterIssuesAssignedToMe: boolean; - importLabelsAsTags: boolean; + isImportLabelsAsTags: boolean; }