Merge pull request #1959 from h3poteto/iss-1936

closes #1936 Fix compose window height when add poll options
This commit is contained in:
AkiraFukushima 2020-12-01 01:06:55 +09:00 committed by GitHub
commit b686abfe9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 4 deletions

View File

@ -407,11 +407,17 @@ export default {
this.statusHeight = this.statusHeight + previousHeight
}
},
addPoll() {
this.polls.push('')
async addPoll() {
const previousPollHeight = this.$refs.poll.$el.offsetHeight
await this.polls.push('')
const diff = this.$refs.poll.$el.offsetHeight - previousPollHeight
this.statusHeight = this.statusHeight - diff
},
removePoll(id) {
this.polls.splice(id, 1)
async removePoll(id) {
const previousPollHeight = this.$refs.poll.$el.offsetHeight
await this.polls.splice(id, 1)
const diff = previousPollHeight - this.$refs.poll.$el.offsetHeight
this.statusHeight = this.statusHeight + diff
},
changeExpire(obj) {
this.pollExpire = obj