summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/components/reactions-viewer.reaction.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/reactions-viewer.reaction.vue b/src/client/app/common/views/components/reactions-viewer.reaction.vue
index 611a65a611..02ee87b093 100644
--- a/src/client/app/common/views/components/reactions-viewer.reaction.vue
+++ b/src/client/app/common/views/components/reactions-viewer.reaction.vue
@@ -49,8 +49,8 @@ export default Vue.extend({
if (!this.isInitial) this.anime();
},
watch: {
- count() {
- this.anime();
+ count(newCount, oldCount) {
+ if (oldCount < newCount) this.anime();
},
},
methods: {