From 95e4f2acc9614360fbfe37450028d2067e5993b8 Mon Sep 17 00:00:00 2001 From: talkor Date: Sat, 8 Oct 2022 12:11:11 +0300 Subject: [PATCH] fix(theme): make text prop of VPHero optional (#1445) --- src/client/theme-default/components/VPHero.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/theme-default/components/VPHero.vue b/src/client/theme-default/components/VPHero.vue index 90c88968faf..6b283761ab8 100644 --- a/src/client/theme-default/components/VPHero.vue +++ b/src/client/theme-default/components/VPHero.vue @@ -11,7 +11,7 @@ export interface HeroAction { defineProps<{ name?: string - text: string + text?: string tagline?: string image?: DefaultTheme.ThemeableImage actions?: HeroAction[]