From b1b330f8cb1790eed4be161117d3e4eacce5b3d2 Mon Sep 17 00:00:00 2001 From: Tim Consolazio Date: Thu, 15 Feb 2024 10:58:39 -0500 Subject: [PATCH] Update DataStoreForm.tsx (#1049) Add required indicator to schema field title. --- spiffworkflow-frontend/src/components/DataStoreForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/src/components/DataStoreForm.tsx b/spiffworkflow-frontend/src/components/DataStoreForm.tsx index 18585c69..4e1345bb 100644 --- a/spiffworkflow-frontend/src/components/DataStoreForm.tsx +++ b/spiffworkflow-frontend/src/components/DataStoreForm.tsx @@ -251,7 +251,7 @@ export default function DataStoreForm({ name="schema" invalidText="Schema is required and must be valid JSON." invalid={schemaInvalid} - labelText="Schema" + labelText="Schema*" value={dataStore.schema} onChange={(event: any) => onSchemaChanged(event.target.value)} />