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'));