Skip to content

Commit

Permalink
reverted incorrect formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRob100 committed Nov 14, 2024
1 parent 50fb5f5 commit 25fed45
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/components/Modal/SideModalBodyLegacyAjax.vue
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<template>
<SideModalBody>
<template #title>{{ legacyOptions.title }}</template>
<div class="p-4">
<div class="bg-secondary p-4">
<AjaxModalWrapper
:key="legacyOptions.url"
:legacy-options="legacyOptions"
/>
</div>
</div>
</SideModalBody>
<SideModalBody>
<template #title>{{ legacyOptions.title }}</template>
<div class="p-4">
<div class="bg-secondary p-4">
<AjaxModalWrapper
:key="legacyOptions.url"
:legacy-options="legacyOptions"
/>
</div>
</div>
</SideModalBody>
</template>

<script setup>
Expand All @@ -18,6 +18,6 @@ import SideModalBody from '@/components/Modal/SideModalBody.vue';
import AjaxModalWrapper from '@/components/Modal/AjaxModalWrapper.vue';
const {legacyOptions} = defineProps({
legacyOptions: {type: Object, default: null},
legacyOptions: {type: Object, default: null},
});
</script>

0 comments on commit 25fed45

Please sign in to comment.