fix selects inside of focus trap not working on click select

This commit is contained in:
Gregor Vostrak
2024-12-09 16:33:57 +01:00
parent c4daca32c5
commit fdbf88a9a6
4 changed files with 9 additions and 3 deletions

View File

@@ -78,7 +78,9 @@ const maxWidthClass = computed(() => {
});
const target = ref();
const { activate, deactivate } = useFocusTrap(target);
const { activate, deactivate } = useFocusTrap(target, {
allowOutsideClick: true,
});
watch(
() => props.show,
(value) => {