From 4429d942a2cf63e873029e2e8677e6d311108bd8 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 5 Dec 2019 18:11:49 +0100 Subject: [PATCH] Use client png again. --- frontend/app/shared/components/pipes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); } }); }