From 2de416c1fa2ed0873b9420602168bcf2936eba24 Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Thu, 13 Apr 2023 12:27:11 +0300 Subject: [PATCH] fix(dial-in) Make text selectable (#13205) --- .../features/prejoin/components/web/dialogs/DialInDialog.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/react/features/prejoin/components/web/dialogs/DialInDialog.tsx b/react/features/prejoin/components/web/dialogs/DialInDialog.tsx index ccb2548b8c..916b3127c3 100644 --- a/react/features/prejoin/components/web/dialogs/DialInDialog.tsx +++ b/react/features/prejoin/components/web/dialogs/DialInDialog.tsx @@ -63,10 +63,15 @@ const useStyles = makeStyles()(theme => { lineHeight: '24px', margin: theme.spacing(1), padding: theme.spacing(2), + userSelect: 'text', '& .prejoin-dialog-dialin-num-container': { minHeight: '48px', margin: `${theme.spacing(2)} 0` + }, + + '& span': { + userSelect: 'text' } },