Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7159779
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/app/components/ConferenceDrawerParticipant.js b/app/components/ConferenceDrawerParticipant.js
index 882da61..e58658d 100644
--- a/app/components/ConferenceDrawerParticipant.js
+++ b/app/components/ConferenceDrawerParticipant.js
@@ -1,36 +1,36 @@
import React from 'react';
import PropTypes from 'prop-types';
import UserIcon from './UserIcon';
import { List, Text } from 'react-native-paper';
const ConferenceDrawerParticipant = (props) => {
let tag = null
if (props.isLocal) {
tag = 'Myself';
}
let participant = props.participant;
if (!participant) {
return null;
}
return (
<List.Item
- description={participant.identity.displayName || participant.identity.uri}
+ title={participant.identity.displayName || participant.identity.uri}
left={props => <UserIcon identity={participant.identity} />}
right={props => tag ? <Text>{tag}</Text> : null}
/>
)
}
ConferenceDrawerParticipant.propTypes = {
participant: PropTypes.object.isRequired,
isLocal: PropTypes.bool
};
export default ConferenceDrawerParticipant;
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Nov 23, 11:28 AM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409157
Default Alt Text
(1 KB)
Attached To
Mode
rSYLKWRTCM Sylk WebRTC mobile
Attached
Detach File
Event Timeline
Log In to Comment