Skip to content

Commit

Permalink
Merge 263fbf2 into 30e7e83
Browse files Browse the repository at this point in the history
  • Loading branch information
hubsif committed May 3, 2021
2 parents 30e7e83 + 263fbf2 commit 862952d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default {
const visible = this.evaluateExpression('visible', this.context.component.config.visible)
const visibleTo = this.context.component.config.visibleTo
if (visible === undefined && visibleTo === undefined) return true
if (visible === false) return false
if (visible === false || visible === 'false') return false
if (visibleTo) {
const user = this.$store.getters.user
if (!user) return false
Expand Down

0 comments on commit 862952d

Please sign in to comment.