From ea3af3961bb4b69bad5ac2bbd66d3eec983ce88a Mon Sep 17 00:00:00 2001 From: f-r00t Date: Mon, 20 Nov 2023 18:16:38 +0100 Subject: [PATCH] Added spinners to connection messages for calls --- src/Recipients.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Recipients.js b/src/Recipients.js index 7dd5190..93863ea 100644 --- a/src/Recipients.js +++ b/src/Recipients.js @@ -1991,7 +1991,8 @@ export class CallScreenNoTranslation extends React.Component { borderRadius: 5, padding: 10, color: 'black', - textAlign: 'center' + textAlign: 'center', + flexDirection: 'row' }}> { this.state.sdp && this.state.callStatus == 'disconnected' && {this.state.nickname + t('isCalling')} @@ -2003,10 +2004,10 @@ export class CallScreenNoTranslation extends React.Component { {t('noRecordAccess')} } { this.state.callStatus == 'waiting' && - {t('waitingForAnswer')} + <>{t('waitingForAnswer')} } { this.state.callStatus == 'connecting' && - {t('connecting')} + <>{t('connecting')} } {/* { this.state.callStatus == 'connected' && {"Connected"}