diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-06-03 13:42:26 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 13:42:26 +0900 |
| commit | 7e093aee5efaaff4d04c9bde680da712d2e4e9f7 (patch) | |
| tree | 0726cb2cf9b36f4d4ee892b10d1fd8ba033d7f92 | |
| parent | Merge branch 'develop' into notification-visibility-read-2 (diff) | |
| download | sharkey-7e093aee5efaaff4d04c9bde680da712d2e4e9f7.tar.gz sharkey-7e093aee5efaaff4d04c9bde680da712d2e4e9f7.tar.bz2 sharkey-7e093aee5efaaff4d04c9bde680da712d2e4e9f7.zip | |
Update src/client/components/notification.vue
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
| -rw-r--r-- | src/client/components/notification.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/notification.vue b/src/client/components/notification.vue index 6c423fdecd..a68a988d19 100644 --- a/src/client/components/notification.vue +++ b/src/client/components/notification.vue @@ -97,7 +97,7 @@ export default Vue.extend({ }, mounted() { - if (!this.notification.isRead ) { + if (!this.notification.isRead) { this.readObserver = new IntersectionObserver((entries, observer) => { if (!entries.some(entry => entry.isIntersecting)) return; this.$root.stream.send('readNotification', { |