use actual data field instead of proxy computed
This commit is contained in:
parent
4faca7d3ca
commit
868119679f
1 changed files with 2 additions and 1 deletions
|
@ -308,9 +308,10 @@ const EmojiPicker = {
|
||||||
itemPerRow () {
|
itemPerRow () {
|
||||||
console.log(
|
console.log(
|
||||||
this.emojiWidth,
|
this.emojiWidth,
|
||||||
|
this.emojiSize,
|
||||||
this.width
|
this.width
|
||||||
)
|
)
|
||||||
return this.width ? Math.floor(this.width / this.emojiWidth) : 6
|
return this.width ? Math.floor(this.width / this.emojiSize) : 6
|
||||||
},
|
},
|
||||||
activeGroupView () {
|
activeGroupView () {
|
||||||
return this.showingStickers ? '' : this.activeGroup
|
return this.showingStickers ? '' : this.activeGroup
|
||||||
|
|
Loading…
Add table
Reference in a new issue