check capabilities.account before showing upsell button
This commit is contained in:
parent
15704cb6dc
commit
163899467d
1 changed files with 16 additions and 15 deletions
|
@ -412,7 +412,8 @@ module.exports.uploading = function(state, emit) {
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports.empty = function(state, emit) {
|
module.exports.empty = function(state, emit) {
|
||||||
const upsell = state.user.loggedIn
|
const upsell =
|
||||||
|
state.user.loggedIn || !state.capabilities.account
|
||||||
? ''
|
? ''
|
||||||
: html`
|
: html`
|
||||||
<button
|
<button
|
||||||
|
|
Loading…
Reference in a new issue