Merge branch '542' into 'develop'

Hide three dot menu button if has no items

Closes #542

See merge request pleroma/pleroma-fe!797
This commit is contained in:
HJ 2019-05-19 14:38:57 +00:00
commit facf076d47
2 changed files with 4 additions and 1 deletions

View file

@ -54,6 +54,9 @@ const ExtraButtons = {
},
canPin () {
return this.ownStatus && (this.status.visibility === 'public' || this.status.visibility === 'unlisted')
},
enabled () {
return this.canPin || this.canDelete
}
}
}

View file

@ -3,7 +3,7 @@
trigger="click"
@hide='showDropDown = false'
append-to-body
v-if="showPopper"
v-if="enabled && showPopper"
:options="{
placement: 'top',
modifiers: {