Skip to content
Snippets Groups Projects
Commit 79e6f355 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #2600 from metabase/default-dt-field-picker-to-day

Default date/time field unit to 'day' if time grouping is enabled
parents 2d7be62c 275706de
No related branches found
No related tags found
No related merge requests found
......@@ -179,6 +179,11 @@ export default class FieldList extends Component {
onChange(item) {
if (item.segment) {
this.props.onFilterChange(item.value);
} else if (this.itemIsSelected(item)) {
// ensure if we select the same item we don't reset datetime_field's unit
this.props.onFieldChange(this.props.field);
} else if (this.props.enableTimeGrouping && isDate(item.field)) {
this.props.onFieldChange(["datetime_field", item.value, "as", "day"]);
} else {
this.props.onFieldChange(item.value);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment