Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Oct 14, 2024
2 parents 8590f70 + e05c3f8 commit 7bc5b2a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tine20/Tinebase/js/widgets/keyfield/Filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ Tine.Tinebase.widgets.keyfield.Filter = Ext.extend(Tine.widgets.grid.FilterModel
initComponent: function() {
this.operators = ['in', 'notin'];

if (!this.app?.name) {
this.app = Tine.Tinebase.appMgr.get(this.app);
}
if (Tine.Tinebase.widgets.keyfield.StoreMgr.get(this.app.name, this.keyfieldName).getCount() > 15) {
this.operators = ['equals', 'not'];
this.defaultOperator = 'equals';
Expand Down

0 comments on commit 7bc5b2a

Please sign in to comment.