Browse Source

Use client png again.

pull/460/head
Sebastian 6 years ago
parent
commit
4429d942a2
  1. 2
      frontend/app/shared/components/pipes.ts

2
frontend/app/shared/components/pipes.ts

@ -213,7 +213,7 @@ export class UserPictureRefPipe extends UserAsyncPipe implements PipeTransform {
if (type === 'subject') { if (type === 'subject') {
return users.getUser(id).pipe(map(u => this.apiUrl.buildUrl(`api/users/${u.id}/picture`))); return users.getUser(id).pipe(map(u => this.apiUrl.buildUrl(`api/users/${u.id}/picture`)));
} else { } else {
return of('./images/client.svg'); return of('./images/client.png');
} }
}); });
} }

Loading…
Cancel
Save