Skip to content

Commit

Permalink
fix(Sidebar): cast value to boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
BreadGenie committed Jun 25, 2024
1 parent bf93208 commit 1ef0085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src2/components/NavigationItems.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default {
isActive: routeName.startsWith('Marketplace'),
condition:
this.$team.doc.is_desk_user ||
(this.$team.doc.is_developer && this.$session.hasAppsAccess),
(!!this.$team.doc.is_developer && this.$session.hasAppsAccess),
disabled
},
{
Expand Down

0 comments on commit 1ef0085

Please sign in to comment.