Skip to content

Commit

Permalink
broaden read only conditional (#5781)
Browse files Browse the repository at this point in the history
  • Loading branch information
briangregoryholmes committed Sep 26, 2024
1 parent 3cc4f54 commit 5503413
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The main feature-set component for dashboard filters
{#each dimensionFilters as { name, label, selectedValues, isInclude } (name)}
{@const dimension = dimensions.find((d) => d.name === name)}
<div animate:flip={{ duration: 200 }}>
{#if dimension?.column}
{#if dimension?.column || dimension?.expression}
<DimensionFilterReadOnlyChip
label={label ?? name}
values={selectedValues}
Expand Down

1 comment on commit 5503413

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.