fix: double click multi select and single selct

This commit is contained in:
DarkPhoenix2704
2025-02-17 13:11:20 +00:00
parent 918cbe9c02
commit 81fe0a5618
2 changed files with 6 additions and 0 deletions

View File

@@ -323,6 +323,9 @@ const isUnderLookup = inject(IsUnderLookupInj, ref(false))
onMounted(() => {
if (isGrid.value && isCanvasInjected && !isExpandedForm.value && !isEditColumn.value && !isUnderLookup.value) {
isOpen.value = true
forcedNextTick(() => {
isOpen.value = true
})
}
})
</script>