Small cleanups here and there.

This commit is contained in:
Håvar Aambø Fosstveit
2019-10-23 12:15:22 +02:00
parent 98b902c5f8
commit 79ecaf7408
12 changed files with 68 additions and 97 deletions
+19 -16
View File
@@ -66,11 +66,27 @@ const JoinDialog = ({
paper : classes.dialogPaper
}}
>
{ window.config.logo ?
{ window.config.logo &&
<img alt='Logo' className={classes.logo} src={window.config.logo} />
:null
}
<Typography variant='subtitle1'>You are about to join a meeting, how would you like to join?</Typography>
<Typography variant='subtitle1'>
You are about to join a meeting.
Set your name that others will see,
and chose how you want to join?
</Typography>
<TextField
id='displayname'
label='Name'
className={classes.textField}
value={displayName}
onChange={(event) =>
{
const { value } = event.target;
changeDisplayName(value);
}}
margin='normal'
/>
<DialogActions>
<Button
onClick={() =>
@@ -90,19 +106,6 @@ const JoinDialog = ({
>
Audio and Video
</Button>
<TextField
id='displayname'
label='Name'
className={classes.textField}
value={displayName}
onChange={(event) =>
{
const { value } = event.target;
changeDisplayName(value);
}}
margin='normal'
/>
</DialogActions>
</Dialog>
</div>