review changes

This commit is contained in:
Shpuld Shpuldson 2020-01-28 17:09:25 +02:00
parent 4e04079739
commit 6afff4f8c2
4 changed files with 6 additions and 14 deletions

View file

@ -4,7 +4,6 @@ const ReactButton = {
props: ['status', 'loggedIn'],
data () {
return {
animated: false,
showTooltip: false,
filterWord: '',
popperOptions: {
@ -29,7 +28,7 @@ const ReactButton = {
},
computed: {
commonEmojis () {
return ['💖', '😠', '👀', '😂', '🔥']
return ['❤️', '😠', '👀', '😂', '🔥']
},
emojis () {
if (this.filterWord !== '') {
@ -37,12 +36,6 @@ const ReactButton = {
}
return this.$store.state.instance.emoji || []
},
classes () {
return {
'icon-smile': true,
'animate-spin': this.animated
}
},
...mapGetters(['mergedConfig'])
}
}