From 74c74c1eca1902047e7cca7310150acd2a907ddb Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 19 Dec 2019 11:38:15 +0100 Subject: [PATCH] Add missing block type in my activities --- client/src/components/profile/ContentBookmark.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/components/profile/ContentBookmark.vue b/client/src/components/profile/ContentBookmark.vue index f58b90d9..fcc6a828 100644 --- a/client/src/components/profile/ContentBookmark.vue +++ b/client/src/components/profile/ContentBookmark.vue @@ -30,6 +30,8 @@ return this.content; case 'survey': return 'Übung'; + case 'image_url_block': + return 'Bild'; default: return this.content.type; }