From 36c63771a0ebfa4a56772aec562fefbe21ee5429 Mon Sep 17 00:00:00 2001 From: Benny Joo Date: Wed, 3 Jan 2024 11:25:23 +0000 Subject: [PATCH] INT-2094 Can't understand that `*` means a required codemod arg (#852) --- .../src/codemodList/CodemodArguments/FormField/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intuita-webview/src/codemodList/CodemodArguments/FormField/index.tsx b/intuita-webview/src/codemodList/CodemodArguments/FormField/index.tsx index 464f8be7..87e5f7d4 100644 --- a/intuita-webview/src/codemodList/CodemodArguments/FormField/index.tsx +++ b/intuita-webview/src/codemodList/CodemodArguments/FormField/index.tsx @@ -23,7 +23,7 @@ const FormField = (props: Props) => { className={styles.field} title={description} > - {name} {required && '*'} + {name} {required && '(required)'} ); }