Skip to content

Commit c653e0a

Browse files
authored
fix(modal): object options (#4488)
1 parent 7616f43 commit c653e0a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/ui/src/components/va-modal/VaModal.vue

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
>
2424
<div
2525
v-if="valueComputed"
26-
:aria-labelledby="title"
2726
:class="computedClass"
2827
class="va-modal"
2928
role="dialog"

packages/ui/src/components/va-modal/modal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const getModalOptions = (options: string | ModalOptions | Component): {
2222
}
2323

2424
return {
25-
props: {},
25+
props: options,
2626
slots: undefined,
2727
}
2828
}

0 commit comments

Comments
 (0)