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)