diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-12-17 17:37:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-17 17:37:58 +0900 |
| commit | 493ff2eed5d0c5a09f81c05bee2f843597c8addb (patch) | |
| tree | a96f6c79151386f12b140aa898650f5ad0579ed1 /packages | |
| parent | 12.100.0 (diff) | |
| download | misskey-493ff2eed5d0c5a09f81c05bee2f843597c8addb.tar.gz misskey-493ff2eed5d0c5a09f81c05bee2f843597c8addb.tar.bz2 misskey-493ff2eed5d0c5a09f81c05bee2f843597c8addb.zip | |
fix(client): fix zindex issue
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/client/src/components/toast.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/toast.vue b/packages/client/src/components/toast.vue index a04cf764ad..6561ba3854 100644 --- a/packages/client/src/components/toast.vue +++ b/packages/client/src/components/toast.vue @@ -1,5 +1,5 @@ <template> -<div class="mk-toast" style="{ zIndex }"> +<div class="mk-toast" :style="{ zIndex }"> <transition name="notification-slide" appear @after-leave="$emit('closed')"> <XNotification v-if="showing" :notification="notification" class="notification _acrylic"/> </transition> |