From beb44cec370ba011ecaea4ffc46a558473526740 Mon Sep 17 00:00:00 2001 From: Ali Amori Kadhim Date: Thu, 12 Oct 2023 16:01:22 +0200 Subject: [PATCH] feat(pdc-dashboard): convert the button-link icon property to enumeration instead of boolean --- .../src/components/components/button-link.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/pdc-dashboard/src/components/components/button-link.json b/apps/pdc-dashboard/src/components/components/button-link.json index 0daa986d6..09752feb3 100644 --- a/apps/pdc-dashboard/src/components/components/button-link.json +++ b/apps/pdc-dashboard/src/components/components/button-link.json @@ -14,15 +14,16 @@ "type": "string", "required": true }, - "icon": { - "type": "boolean" - }, "label": { "type": "string" }, "button_link_appearance": { "type": "enumeration", "enum": ["primary", "secondary"] + }, + "icon": { + "type": "enumeration", + "enum": ["arrow"] } } }