From 32f32fc03d929439d2bc7f8a7ab753dcedf48fe0 Mon Sep 17 00:00:00 2001 From: sualko Date: Sat, 23 Jan 2021 12:10:58 +0100 Subject: [PATCH] chore: add description to share with input --- ts/Manager/EditRoomDialog.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/Manager/EditRoomDialog.tsx b/ts/Manager/EditRoomDialog.tsx index e497117..a089440 100644 --- a/ts/Manager/EditRoomDialog.tsx +++ b/ts/Manager/EditRoomDialog.tsx @@ -15,6 +15,7 @@ const descriptions: { [key: string]: string } = { moderator: t('bbb', 'A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.'), requireModerator: t('bbb', 'If enabled, normal users have to wait until a moderator is in the room.'), moderatorToken: t('bbb', 'If enabled, a moderator URL is generated which allows access with moderator permission.'), + internalRestrictedShareWith: t('bbb', 'Only selected users and groups are allowed to access the room.'), }; type Props = { @@ -101,12 +102,12 @@ const EditRoomDialog: React.FC = ({ room, restriction, updateProperty, op {inputElement(t('bbb', 'Participant limit'), 'maxParticipants', 'number')} {selectElement(t('bbb', 'Access'), 'access', room.access, accessOptions, (value) => { - console.log('access', value); updateProperty('access', value); })} {room.access === Access.InternalRestricted &&
+ {descriptions.internalRestrictedShareWith}
}