Skip to content

Commit

Permalink
chore(Toaster): fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Feb 20, 2025
1 parent 1466a27 commit b607261
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/components/Toaster.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ function getOffset(index: number) {
v-for="(toast, index) of toasts"
:key="toast.id"
ref="refs"
v-bind="omit(toast, ['id'])"
v-bind="omit(toast, ['id', 'close'])"
:close="toast.close"
:data-expanded="expanded"
:data-front="!expanded && index === toasts.length - 1"
:style="{
Expand Down

0 comments on commit b607261

Please sign in to comment.