1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

show flair container when no profiles loaded to ensure same height

This commit is contained in:
Bruno Windels
2019-03-05 14:50:39 +01:00
parent 18d897298d
commit 624572daa9

View File

@@ -117,7 +117,7 @@ export default class Flair extends React.Component {
render() {
if (this.state.profiles.length === 0) {
return <div />;
return <span className="mx_Flair" />;
}
const avatars = this.state.profiles.map((profile, index) => {
return <FlairAvatar key={index} groupProfile={profile} />;