Skip to content

Commit bb4dc22

Browse files
committed
fix: review
1 parent 9f7f1ca commit bb4dc22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/devextreme/js/__internal/scheduler/workspaces/view_model/grouped_data_map_provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ export class GroupedDataMapProvider {
303303
startDate: this.getGroupStartDate(groupIndex ?? 0),
304304
endDate: this.getGroupEndDate(groupIndex ?? 0),
305305
};
306-
}).filter((info): info is GroupInfo => Boolean(info.startDate) && info.endDate !== undefined);
306+
}).filter((info): info is GroupInfo => Boolean(info.startDate) && Boolean(info.endDate));
307307
}
308308

309309
getGroupIndices(): number[] {

0 commit comments

Comments
 (0)