From f91424f693bfe988fa6960c5d720a177f58d6c08 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sun, 22 May 2022 15:49:37 +0000 Subject: [PATCH] fix: button prop type (#1966) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1966 Reviewed-by: konrad Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- src/components/input/button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/button.vue b/src/components/input/button.vue index 07e0ad2f..cae9bc15 100644 --- a/src/components/input/button.vue +++ b/src/components/input/button.vue @@ -43,7 +43,7 @@ const props = defineProps({ default: 'primary', }, icon: { - type: String, + type: [String, Array], default: '', }, loading: {