chore: Minor fix

This commit is contained in:
iamsivin
2025-05-09 18:30:42 +05:30
parent 0a31e6ee63
commit d5267057f6
@@ -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'));
</script>
<template>
<Teleport :to="target">
<Teleport :to="to">
<div :dir="contentDirection">
<slot />
</div>