Skip to content

Commit

Permalink
fix(locale): use correct locale text operator tooltip, closes #468
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding-SE committed May 21, 2020
1 parent 4858794 commit 4f8259a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class CompoundInputFilter implements Filter {
{ operator: '' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}CONTAINS`) || this._locales && this._locales.TEXT_CONTAINS },
{ operator: '=' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}EQUALS`) || this._locales && this._locales.TEXT_EQUALS },
{ operator: 'a*' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}STARTS_WITH`) || this._locales && this._locales.TEXT_STARTS_WITH },
{ operator: '*z' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}ENDS_WITH`) || this._locales && this._locales.TEXT_CONTAINS },
{ operator: '*z' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}ENDS_WITH`) || this._locales && this._locales.TEXT_ENDS_WITH },
/*
{ operator: 'IN' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}IN_COLLECTION_SEPERATED_BY_COMMA`) },
{ operator: 'NIN' as OperatorString, description: this.translate && this.translate.currentLang && this.translate.instant && this.translate.instant(`${translationPrefix}NOT_IN_COLLECTION_SEPERATED_BY_COMMA`) },
Expand Down

0 comments on commit 4f8259a

Please sign in to comment.