Browse Source

refactor(gui): cleanup

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/4957/head
Pranav C 2 years ago
parent
commit
a4877e8fbe
  1. 6
      packages/nc-gui/components/cell/MultiSelect.vue

6
packages/nc-gui/components/cell/MultiSelect.vue

@ -127,12 +127,6 @@ const selectedTitles = computed(() =>
: [],
)
const handleClose = (e: MouseEvent) => {
if (aselect.value && !aselect.value.$el.contains(e.target)) {
isOpen.value = false
}
}
onMounted(() => {
selectedIds.value = selectedTitles.value.flatMap((el) => {
const item = options.value.find((op) => op.title === el)

Loading…
Cancel
Save