diff --git a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx index fd0505e7f..de9f037d7 100644 --- a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx +++ b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx @@ -101,7 +101,7 @@ function AssistActions({ toggleChatWindow, userId, calling, peerConnectionStatus { inCall ? 'End Call' : 'Call' } } - content={ `Call ${userId ? userId : 'User'}` } + content={ cannotCall ? "You don’t have the permissions to perform this action." : `Call ${userId ? userId : 'User'}` } size="tiny" inverted position="top right" diff --git a/frontend/app/components/Client/Roles/Roles.tsx b/frontend/app/components/Client/Roles/Roles.tsx index 65bbcfdfb..1b6069328 100644 --- a/frontend/app/components/Client/Roles/Roles.tsx +++ b/frontend/app/components/Client/Roles/Roles.tsx @@ -80,6 +80,7 @@ function Roles(props: Props) { /> } + content="You don’t have the permissions to perform this action." disabled={ isAdmin } size="tiny" inverted