- :null
}
);
diff --git a/app/src/components/JoinDialog.js b/app/src/components/JoinDialog.js
index ed7f290..1864dbc 100644
--- a/app/src/components/JoinDialog.js
+++ b/app/src/components/JoinDialog.js
@@ -66,11 +66,27 @@ const JoinDialog = ({
paper : classes.dialogPaper
}}
>
- { window.config.logo ?
+ { window.config.logo &&
- :null
}
- You are about to join a meeting, how would you like to join?
+
+ You are about to join a meeting.
+ Set your name that others will see,
+ and chose how you want to join?
+
+
+ {
+ const { value } = event.target;
+
+ changeDisplayName(value);
+ }}
+ margin='normal'
+ />
-
- {
- const { value } = event.target;
-
- changeDisplayName(value);
- }}
- margin='normal'
- />
diff --git a/app/src/components/MeetingDrawer/FileSharing/File.js b/app/src/components/MeetingDrawer/FileSharing/File.js
index cd3a985..dd89cd2 100644
--- a/app/src/components/MeetingDrawer/FileSharing/File.js
+++ b/app/src/components/MeetingDrawer/FileSharing/File.js
@@ -67,7 +67,7 @@ class File extends React.PureComponent
- :null
}
- { file.timeout ?
+ { file.timeout &&
If this process takes a long time, there might not be anyone seeding
this torrent. Try asking someone to reupload the file that you want.
- :null
}
- { file.active ?
+ { file.active &&
- :null
}
diff --git a/app/src/components/MeetingDrawer/ParticipantList/ListMe.js b/app/src/components/MeetingDrawer/ParticipantList/ListMe.js
index f506f9c..04dcfc6 100644
--- a/app/src/components/MeetingDrawer/ParticipantList/ListMe.js
+++ b/app/src/components/MeetingDrawer/ParticipantList/ListMe.js
@@ -91,9 +91,8 @@ const ListMe = (props) =>