Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
fix(Dialog): ignore input listeners
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicenturi committed May 10, 2024
1 parent 6f393e6 commit 2d7fa71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/overlays/dialog/Dialog.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import { objectOmit } from '@vueuse/shared';
import RuiTeleport from '@/components/overlays/Teleport';
export interface DialogProps {
Expand Down Expand Up @@ -149,7 +150,7 @@ const contentTransition = computed(() => {
@keydown.esc.stop="!persistent && close()"
v-on="
// eslint-disable-next-line vue/no-deprecated-dollar-listeners-api
$listeners
objectOmit($listeners, ['input'])
"
>
<Transition
Expand Down

0 comments on commit 2d7fa71

Please sign in to comment.