diff --git a/frontend/app/shared/components/pipes.ts b/frontend/app/shared/components/pipes.ts index 60e20c0c8..00f9c32ff 100644 --- a/frontend/app/shared/components/pipes.ts +++ b/frontend/app/shared/components/pipes.ts @@ -213,7 +213,7 @@ export class UserPictureRefPipe extends UserAsyncPipe implements PipeTransform { if (type === 'subject') { return users.getUser(id).pipe(map(u => this.apiUrl.buildUrl(`api/users/${u.id}/picture`))); } else { - return of('./images/client.svg'); + return of('./images/client.png'); } }); }