We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d20634e + e881344 commit 0c31428Copy full SHA for 0c31428
src/components/TeamManagement/AutoCompleteInput.jsx
@@ -63,8 +63,8 @@ class AutoCompleteInput extends React.Component {
63
}
64
65
<span>
66
- <InputIcon className="input-icon"/>
67
- {selectedNewMember && <img src={selectedNewMember.photoURL} />}
+ {!selectedNewMember && <InputIcon className="input-icon"/>}
+ {selectedNewMember && <Avatar size={36} avatarUrl={selectedNewMember.photoURL}/>}
68
</span>
69
<input
70
autoFocus
src/components/TeamManagement/TeamManagement.scss
@@ -292,6 +292,12 @@ $tc-body-extra-small: 12px;
292
border-radius: 34px;
293
294
295
+
296
+ span .Avatar {
297
+ margin: 4px;
298
+ width: 30px;
299
+ height: 30px;
300
+ }
301
302
303
0 commit comments