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

Merge pull request #460 from metabase/incl_dims_in_breakout

include fields with "dimension" field_type in our breakout list in query builder
parents e54182eb 69414b02
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ ExploreServices.service('CorvusFormGenerator', [function() {
}
function isDimension(field) {
return isDate(field) || isCategory(field);
return isDate(field) || isCategory(field) || isInTypes(field.field_type, ['dimension']);
}
......
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