Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Fix time filter in dashboard v2 (apache#5412)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida authored and timifasubaa committed Jul 25, 2018
1 parent 488db15 commit 9fabc04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions superset/assets/src/dashboard/reducers/dashboardState.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
}
}
Expand Down

0 comments on commit 9fabc04

Please sign in to comment.