Skip to content

Commit

Permalink
+ Fix broken duplicate ColumnHeaderFilter.scss import
Browse files Browse the repository at this point in the history
+ Remove logging
  • Loading branch information
TomTirapani committed Dec 27, 2024
1 parent a4aeada commit 3f2611d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion desktop/cmp/grid/impl/filter/headerfilter/HeaderFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {panel} from '@xh/hoist/desktop/cmp/panel';
import {toolbar} from '@xh/hoist/desktop/cmp/toolbar';
import {Icon} from '@xh/hoist/icon';
import {stopPropagation} from '@xh/hoist/utils/js';
import './ColumnHeaderFilter.scss';
import {HeaderFilterModel} from './HeaderFilterModel';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export class ValuesTabModel extends HoistModel {
@action
setRecsChecked(isChecked: boolean, values: any[]) {
values = castArray(values);
console.log(values);
this.pendingValues = isChecked
? uniq([...this.pendingValues, ...values])
: without(this.pendingValues, ...values);
Expand Down Expand Up @@ -226,10 +225,7 @@ export class ValuesTabModel extends HoistModel {
disabled: gridModel.store.empty,
displayUnsetState: true,
value: this.allVisibleRecsChecked,
onChange: () => {
console.log('somebody calling me');
this.toggleAllRecsChecked();
}
onChange: () => this.toggleAllRecsChecked()
});
},
width: 28,
Expand Down

0 comments on commit 3f2611d

Please sign in to comment.