Page MenuHomePhabricator

No OneTemporary

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

Mime Type
text/x-diff
Expires
Sat, Nov 23, 11:28 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409157
Default Alt Text
(1 KB)

Event Timeline