Skip to content
Snippets Groups Projects
Unverified Commit ced8c35f authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #11963 from ramonlsouza/issue-11935

Formatting of PIN number within client
parents 3f8d619e 095bf7b3
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,8 @@ class AudioDial extends React.PureComponent {
telVoice,
} = this.props;
const formattedTelVoice = telVoice.replace(/(?=(\d{3})+(?!\d))/g, ' ');
return (
<span className={styles.help}>
<div className={styles.text}>
......@@ -45,7 +47,7 @@ class AudioDial extends React.PureComponent {
<div className={styles.conferenceText}>
{intl.formatMessage(intlMessages.audioDialConfrenceText)}
</div>
<div className={styles.telvoice}>{telVoice}</div>
<div className={styles.telvoice}>{formattedTelVoice}</div>
<div className={styles.tipBox}>
<span className={styles.tipIndicator}>
{`${intl.formatMessage(intlMessages.tipIndicator)}: `}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment