From 0c6c7b3e40c5f7422e1037a1bdffcad90afc6a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 15 May 2020 10:29:06 +0200 Subject: [PATCH] Fix issue if card description might be null MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/card/CardSidebar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/card/CardSidebar.vue b/src/components/card/CardSidebar.vue index 403a9653c..a47980ce1 100644 --- a/src/components/card/CardSidebar.vue +++ b/src/components/card/CardSidebar.vue @@ -325,7 +325,7 @@ export default { }, }, renderedDescription() { - return markdownIt.render(this.copiedCard.description) + return markdownIt.render(this.copiedCard.description || '') }, }, watch: {