Update DataStoreForm.tsx (#1049)

Add required indicator to schema field title.
This commit is contained in:
Tim Consolazio 2024-02-15 10:58:39 -05:00 committed by GitHub
parent d8897ed3b4
commit b1b330f8cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)}
/>