Skip to content
Snippets Groups Projects
Unverified Commit ae50099b authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

bugfix: handle field values lists with no values (#23669)

* handle field values lists with no values
parent ccf9cc2d
No related branches found
No related tags found
No related merge requests found
......@@ -61,12 +61,12 @@ const categoryField = new Field({
table_id: 8,
name: "category_string",
has_field_values: "list",
values: ["Michaelangelo", "Donatello", "Raphael", "Leonardo"],
values: [["Michaelangelo"], ["Donatello"], ["Raphael"], ["Leonardo"]],
dimensions: {},
dimension_options: [],
effective_type: "type/Float",
effective_type: "type/Text",
id: 137,
base_type: "type/Float",
base_type: "type/Text",
metadata,
});
......
......@@ -21,6 +21,11 @@ import { BulkFilterSelect } from "../BulkFilterSelect";
const mapStateToProps = (state: any, props: any) => {
const fieldId = props.dimension?.field?.()?.id;
if (props.dimension?.field?.()?.values?.length) {
return { fieldValues: props.dimension?.field?.()?.values };
}
const fieldValues =
fieldId != null
? Fields.selectors.getFieldValues(state, {
......@@ -76,6 +81,7 @@ export function InlineCategoryPickerComponent({
}, [dimension, safeFetchFieldValues, shouldFetchFieldValues]);
const showInlinePicker =
fieldValues.length > 0 &&
fieldValues.length <= MAX_INLINE_CATEGORIES &&
(!filter || filter?.operatorName() === "=");
......
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