diff --git a/src/views/trials/trials-layout/components/trialsNavbar.vue b/src/views/trials/trials-layout/components/trialsNavbar.vue index c5c47cc9..004aa805 100644 --- a/src/views/trials/trials-layout/components/trialsNavbar.vue +++ b/src/views/trials/trials-layout/components/trialsNavbar.vue @@ -146,7 +146,11 @@ export default { return this.$store.state.user.roles }, hasRole() { - return this.roles && this.roles.length > 1 + return ( + this.roles && + this.roles.length > 1 && + this.roles.filter((item) => !item.IsUserRoleDisabled).length > 1 + ) }, }, watch: {