Skip to content

Commit

Permalink
Merge pull request #6201 from mzimandl/fixes2
Browse files Browse the repository at this point in the history
fix wrong arg name
  • Loading branch information
tomachalek committed May 20, 2024
2 parents 9f7dbb5 + 5c02dfd commit 8ecb21d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/files/js/models/keywords/form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export interface KeywordsFormModelArgs {
wlattr:string;
wlpat:string;
score_type:ScoreType;
includeNonWords:boolean;
include_nonwords:boolean;
};
}

Expand Down Expand Up @@ -119,7 +119,7 @@ export class KeywordsFormModel extends StatelessModel<KeywordsFormState> impleme
availAttrs,
focusCorpusAttrs,
manateeIsCustomCNC: layoutModel.getConf<boolean>('manateeIsCustomCNC'),
includeNonWords: initialArgs.includeNonWords
includeNonWords: initialArgs.include_nonwords
}
);
this.layoutModel = layoutModel;
Expand Down

0 comments on commit 8ecb21d

Please sign in to comment.