I am trying to add values to a disabled directive. So if you look at the code below I am disabling a button if a value matches System Admin. I am now trying to add more values to this. So I want to add System Admin and HR Manager to this.
[disabled]="userRole === 'System Admin'"
I tried this but it does not seem to work
[disabled]="userRole === 'System Admin' || 'HR Manager'"

[disabled]="(userRole === 'System Admin' || 'HR Manager')"