From 98e8d971e81c1918bfea073d15c77e38b26393ce Mon Sep 17 00:00:00 2001 From: Pascal Martineau Date: Fri, 30 Jan 2026 15:43:37 -0500 Subject: [PATCH] feat: showLabel --- .../themes/moonshine/app/components/acf/AcfLinkButton.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue b/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue index f8a8c6f..10e80cd 100644 --- a/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue +++ b/wp-content/themes/moonshine/app/components/acf/AcfLinkButton.vue @@ -4,9 +4,10 @@ import type { ButtonProps } from "@nuxt/ui"; type AcfLinkButtonProps = & Omit & { link?: AcfLinkFragment; + showLabel?: boolean; }; -const { link, ...buttonProps } = defineProps(); +const { link, showLabel, ...buttonProps } = defineProps();