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; }