From 47143af9d1716dac8b75c29c5c26066a96ddc2e6 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 17 Jun 2024 15:34:33 +0200 Subject: [PATCH] fix: missing required prop BackgroundColor --- frontend/src/components/base/Expandable.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/base/Expandable.vue b/frontend/src/components/base/Expandable.vue index 23f0f56d7..663fc4379 100644 --- a/frontend/src/components/base/Expandable.vue +++ b/frontend/src/components/base/Expandable.vue @@ -41,10 +41,11 @@ const props = withDefaults(defineProps<{ initialHeight?: number /** The hidden content is indicated by a gradient. This is the color that the gradient fades to. * Makes only sense if `initialHeight` is set. */ - backgroundColor: string + backgroundColor?: string }>(), { open: false, initialHeight: undefined, + backgroundColor: undefined, }) const wrapper = ref(null)