From d5267057f6c8174735369e6c6ef7d4f2ba5eddec Mon Sep 17 00:00:00 2001 From: iamsivin Date: Fri, 9 May 2025 18:30:42 +0530 Subject: [PATCH] chore: Minor fix --- app/javascript/dashboard/components-next/CustomTeleport.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/dashboard/components-next/CustomTeleport.vue b/app/javascript/dashboard/components-next/CustomTeleport.vue index 73ccddf6e..3e9009f08 100644 --- a/app/javascript/dashboard/components-next/CustomTeleport.vue +++ b/app/javascript/dashboard/components-next/CustomTeleport.vue @@ -8,7 +8,7 @@ import { computed } from 'vue'; import { useMapGetter } from 'dashboard/composables/store'; defineProps({ - target: { + to: { type: String, default: 'body', }, @@ -20,7 +20,7 @@ const contentDirection = computed(() => (isRTL.value ? 'rtl' : 'ltr'));