Skip to content

Commit b1de3bb

Browse files
authored
Merge pull request #17680 from People-Sea/fix/issue/17518
fix: duplicated `notification`
2 parents a04135b + 97272d5 commit b1de3bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/notifications/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/notifications/resources/js/components/notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default (Alpine) => {
5353
const hide = () => {
5454
Alpine.mutateDom(() => {
5555
this.$el._x_isShown
56-
? this.$el.style.setProperty('visibility', 'hidden')
56+
? this.$el.style.setProperty('opacity', 0)
5757
: this.$el.style.setProperty('display', 'none')
5858
})
5959
}

0 commit comments

Comments
 (0)