From 14e8de73e9f92ad220d3721ced8e722b37c00309 Mon Sep 17 00:00:00 2001 From: Universe Date: Wed, 13 Dec 2023 18:18:41 +0900 Subject: [PATCH] made label optional --- packages/console-ui/text-form-field/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console-ui/text-form-field/index.tsx b/packages/console-ui/text-form-field/index.tsx index b5b1740..fc2f2b8 100644 --- a/packages/console-ui/text-form-field/index.tsx +++ b/packages/console-ui/text-form-field/index.tsx @@ -16,7 +16,7 @@ export function TextFormField({ onEnter?: (value: string) => void; onChange?: (value: string) => void; readonly?: boolean; - label: string; + label?: string; value?: string; helpText?: string; placeholder?: string;