Skip to content

Commit

Permalink
Merge branch 'lineupjs4' into thinkh/346_ignore-live-preview-events
Browse files Browse the repository at this point in the history
  • Loading branch information
oltionchampari committed Apr 2, 2020
2 parents 4c8ffa4 + 58409cd commit 944b5a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"ts-loader": "4.0.1",
"tslib": "~1.11.0",
"tslint": "5.9.1",
"ts-jest": "^25.2.1",
"ts-jest": "25.2.1",
"typedoc": "~0.16.10",
"typescript": "~3.8.2",
"url-loader": "0.5.8",
Expand Down
10 changes: 5 additions & 5 deletions src/lineup/internal/OverviewColumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export default class OverviewColumn extends BooleanColumn {

constructor(id: string, desc: IBooleanColumnDesc) {
super(id, Object.assign(desc, {
label: i18n.t('tdp:core.lineup.OverviewColumn.overviewSelection')
label: i18n.t('tdp:core.lineup.OverviewColumn.overviewSelection'),
renderer: 'boolean',
groupRenderer: 'boolean',
summaryRenderer: 'categorical'
}));
(<OverviewColumn>this).setDefaultRenderer('boolean');
(<OverviewColumn>this).setDefaultGroupRenderer('boolean');
(<OverviewColumn>this).setDefaultSummaryRenderer('categorical');
(<OverviewColumn>this).setWidthImpl(0); // hide
this.setWidthImpl(0); // hide
}

getValue(row: IDataRow) {
Expand Down

0 comments on commit 944b5a6

Please sign in to comment.