Skip to content

Commit

Permalink
fix: change boolean member name to more consistent 'is' variant
Browse files Browse the repository at this point in the history
  • Loading branch information
MiragonMx committed Aug 18, 2024
1 parent ef190dd commit 67e18a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/features/issue/providers/github/github.const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 :(
Expand Down Expand Up @@ -99,7 +99,7 @@ export const GITHUB_CONFIG_FORM: LimitedFormlyFieldConfig<GithubCfg>[] = [
},
},
{
key: 'importLabelsAsTags',
key: 'isImportLabelsAsTags',
type: 'checkbox',
hideExpression: (model: any) => !model.isEnabled,
templateOptions: {
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/issue/providers/github/github.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export interface GithubCfg extends BaseIssueProviderCfg {
repo: string | null;
token: string | null;
filterIssuesAssignedToMe: boolean;
importLabelsAsTags: boolean;
isImportLabelsAsTags: boolean;
}

0 comments on commit 67e18a6

Please sign in to comment.