mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +03:00
Fixed null avatar crash issue. Fixed editor title issue
This commit is contained in:
parent
5f06d06bd7
commit
2d35876b1e
@ -48,7 +48,7 @@ export default class TitleAreaView extends Component {
|
|||||||
const { text, height } = this.state;
|
const { text, height } = this.state;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={globalStyles.containerHorizontal16}>
|
<View style={[globalStyles.containerHorizontal16, { height: Math.max(35, height) }]}>
|
||||||
<TextInput
|
<TextInput
|
||||||
style={[styles.textInput, { height: Math.max(35, height) }]}
|
style={[styles.textInput, { height: Math.max(35, height) }]}
|
||||||
placeholderTextColor="#c1c5c7"
|
placeholderTextColor="#c1c5c7"
|
||||||
|
@ -61,7 +61,9 @@ class UserAvatarView extends Component {
|
|||||||
let _size;
|
let _size;
|
||||||
const _avatar = username
|
const _avatar = username
|
||||||
? {
|
? {
|
||||||
uri: avatarUrl || (name === username ? avatar : getResizedAvatar(username, imageSize)),
|
uri:
|
||||||
|
avatarUrl ||
|
||||||
|
(name === username && avatar ? avatar : getResizedAvatar(username, imageSize)),
|
||||||
}
|
}
|
||||||
: DEFAULT_IMAGE;
|
: DEFAULT_IMAGE;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user