Fix time filter in dashboard v2 (#5412)

This commit is contained in:
Beto Dealmeida 2018-07-17 13:38:33 -07:00 committed by Maxime Beauchemin
parent 7670e0c565
commit 75cf5e198f
2 changed files with 2 additions and 3 deletions

View File

@ -97,8 +97,7 @@ export default function dashboardStateReducer(state = {}, action) {
const { chart, col, vals: nextVals, merge, refresh } = action;
const sliceId = chart.id;
const filterKeys = [
'__from',
'__to',
'__time_range',
'__time_col',
'__time_grain',
'__time_origin',

View File

@ -176,7 +176,7 @@ export default class DateFilterControl extends React.Component {
}
handleClick(e) {
// switch to `TYPES.CUSTOM_START_END` when the calendar is clicked
if (this.startEndSectionRef.contains(e.target)) {
if (this.startEndSectionRef && this.startEndSectionRef.contains(e.target)) {
this.setState({ type: TYPES.CUSTOM_START_END });
}
}