Skip to content

Commit

Permalink
Merge pull request #466 from 1CRM/filter-fix-3112
Browse files Browse the repository at this point in the history
ListView: Filters Panel - Ref input filters - if you select a value f…
  • Loading branch information
alexivanenko authored Jan 9, 2025
2 parents 2c91549 + 32dc8f5 commit 2df6710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/oceanfront/src/fields/Text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ export const OfTextField = defineComponent({
optionListFocused.value = false
if (!props.capture) closeItemsPopup(true)
},
onClick: (val) =>
props.setItem ? props.setItem(val) : setItem(val)
onClick: (val, item) =>
props.setItem ? props.setItem(val, item) : setItem(val)
})
: undefined,
visible: itemsOpened,
Expand Down

0 comments on commit 2df6710

Please sign in to comment.