From 9b85c45f38ad291194e5cfa1feae6fb41c5bfeeb Mon Sep 17 00:00:00 2001 From: Louis Date: Wed, 2 Oct 2024 16:39:36 +0200 Subject: [PATCH] fix: Don't require name prop in NcListItem As it is only required if the slot is missing. Signed-off-by: Louis --- src/components/NcListItem/NcListItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NcListItem/NcListItem.vue b/src/components/NcListItem/NcListItem.vue index dcb0f6a45f..5827054164 100644 --- a/src/components/NcListItem/NcListItem.vue +++ b/src/components/NcListItem/NcListItem.vue @@ -563,7 +563,7 @@ export default { */ name: { type: String, - required: true, + default: undefined, }, /**