Skip to content
Snippets Groups Projects
Commit 095bf7b3 authored by Ramon Souza's avatar Ramon Souza
Browse files

formatting pin number

parent 598dcb77
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