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.
1 parent 5ec56df commit e881344Copy full SHA for e881344
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