From b00d7572c80ea6f0fed8ebcc83896ff57176aacc Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 17 Mar 2022 10:29:47 +0100 Subject: [PATCH] Make date prop for HumanDate required again --- front/src/components/common/HumanDate.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/common/HumanDate.vue b/front/src/components/common/HumanDate.vue index a2f24e3e8..5dc267adf 100644 --- a/front/src/components/common/HumanDate.vue +++ b/front/src/components/common/HumanDate.vue @@ -14,7 +14,7 @@ import { mapState } from 'vuex' export default { props: { - date: { type: String, default: '' }, + date: { type: String, required: true }, icon: { type: Boolean, required: false, default: false } }, computed: {