Skip to content

Commit

Permalink
feat(style-panel): fix AI reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
betterdancing committed Oct 23, 2024
1 parent bda9133 commit d451da6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const findMatchingFoldValue = (value) =>
const filterNonMatchingValues = (value) =>
collapsedOptions.value.filter((item) =>
props.valueKey ? item.value[props.valueKey] === value : item.value === value
props.valueKey ? item.value[props.valueKey] !== value : item.value !== value
)
const updateOptionDisplay = (value) => {
Expand Down

0 comments on commit d451da6

Please sign in to comment.