Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:datavisyn/lineupjs into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Nov 29, 2018
2 parents 18dded5 + d06c42a commit 47ba23a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/DateColumn.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {timeFormat, timeParse} from 'd3-time-format';
import {Category, toolbar, dialogAddons} from './annotations';
import {IDataRow, IGroupData} from './interfaces';
import {IDataRow, IGroupData, IGroup} from './interfaces';
import {FIRST_IS_MISSING, isMissingValue, missingGroup, isUnknown} from './missing';
import ValueColumn, {IValueColumnDesc, dataLoaded} from './ValueColumn';
import {widthChanged, labelChanged, metaDataChanged, dirty, dirtyHeader, dirtyValues, rendererTypeChanged, groupRendererChanged, summaryRendererChanged, visibilityChanged} from './Column';
Expand Down Expand Up @@ -173,7 +173,7 @@ export default class DateColumn extends ValueColumn<Date> implements IDateColumn
this.fire([DateColumn.EVENT_GROUPING_CHANGED, Column.EVENT_DIRTY_VALUES, Column.EVENT_DIRTY], bak, value);
}

group(row: IDataRow) {
group(row: IDataRow): IGroup {
const v = this.getDate(row);
if (!v || !(v instanceof Date)) {
return missingGroup;
Expand Down

0 comments on commit 47ba23a

Please sign in to comment.