mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Add missing semicolons
This commit is contained in:
parent
adfe1ac9bf
commit
997c7ffc96
@ -55,12 +55,12 @@ export default class MessagePreview extends React.Component<IProps, IState> {
|
||||
userId: "@erim:fink.fink",
|
||||
displayname: "Erimayas Fink",
|
||||
avatar_url: null,
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
async componentDidMount() {
|
||||
// Fetch current user data
|
||||
const client = MatrixClientPeg.get()
|
||||
const client = MatrixClientPeg.get();
|
||||
const userId = client.getUserId();
|
||||
const profileInfo = await client.getProfileInfo(userId);
|
||||
const avatar_url = Avatar.avatarUrlForUser(
|
||||
@ -97,7 +97,7 @@ export default class MessagePreview extends React.Component<IProps, IState> {
|
||||
},
|
||||
"event_id": "$9999999999999999999999999999999999999999999",
|
||||
"room_id": "!999999999999999999:matrix.org"
|
||||
}`))
|
||||
}`));
|
||||
|
||||
// Fake it more
|
||||
event.sender = {
|
||||
@ -106,7 +106,7 @@ export default class MessagePreview extends React.Component<IProps, IState> {
|
||||
getAvatarUrl: (..._) => {
|
||||
return avatar_url;
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
@ -124,6 +124,6 @@ export default class MessagePreview extends React.Component<IProps, IState> {
|
||||
|
||||
return <div className={className}>
|
||||
<EventTile mxEvent={event} useIRCLayout={this.props.useIRCLayout} />
|
||||
</div>
|
||||
</div>;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user