mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
parent
1c4022456e
commit
f7580f5337
2 changed files with 14 additions and 18 deletions
31
ui/src/components/user.tsx
vendored
31
ui/src/components/user.tsx
vendored
|
@ -130,14 +130,7 @@ export class User extends Component<any, UserState> {
|
|||
this.state.username = this.props.match.params.username;
|
||||
|
||||
this.subscription = WebSocketService.Instance.subject
|
||||
.pipe(
|
||||
retryWhen(errors =>
|
||||
errors.pipe(
|
||||
delay(3000),
|
||||
take(10)
|
||||
)
|
||||
)
|
||||
)
|
||||
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
||||
.subscribe(
|
||||
msg => this.parseMessage(msg),
|
||||
err => console.error(err),
|
||||
|
@ -449,16 +442,18 @@ export class User extends Component<any, UserState> {
|
|||
htmlFor="file-upload"
|
||||
class="pointer ml-4 text-muted small font-weight-bold"
|
||||
>
|
||||
<img
|
||||
height="80"
|
||||
width="80"
|
||||
src={
|
||||
this.state.userSettingsForm.avatar
|
||||
? this.state.userSettingsForm.avatar
|
||||
: 'https://via.placeholder.com/300/000?text=Avatar'
|
||||
}
|
||||
class="rounded-circle"
|
||||
/>
|
||||
{!this.state.userSettingsForm.avatar ? (
|
||||
<span class="btn btn-sm btn-secondary">
|
||||
<T i18nKey="upload_avatar">#</T>
|
||||
</span>
|
||||
) : (
|
||||
<img
|
||||
height="80"
|
||||
width="80"
|
||||
src={this.state.userSettingsForm.avatar}
|
||||
class="rounded-circle"
|
||||
/>
|
||||
)}
|
||||
</label>
|
||||
<input
|
||||
id="file-upload"
|
||||
|
|
1
ui/src/translations/en.ts
vendored
1
ui/src/translations/en.ts
vendored
|
@ -29,6 +29,7 @@ export const en = {
|
|||
preview: 'Preview',
|
||||
upload_image: 'upload image',
|
||||
avatar: 'Avatar',
|
||||
upload_avatar: 'Upload Avatar',
|
||||
show_avatars: 'Show Avatars',
|
||||
formatting_help: 'formatting help',
|
||||
view_source: 'view source',
|
||||
|
|
Loading…
Reference in a new issue