Skip to content

Commit 53b6086

Browse files
authored
Merge pull request #2 from rebeccaalpert/hc-7.1.25
chore(HighContrast): Fix a11y issues
2 parents 28b691b + 087817a commit 53b6086

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/react-core/src/demos/examples/HighContrast/HighContrast.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export const TabsOpenDemo = () => {
195195
isRequired
196196
fieldId="horizontal-form-checkbox-group"
197197
role="group"
198-
labelHelp={<FormGroupLabelHelp aria-label="" />}
198+
labelHelp={<FormGroupLabelHelp aria-label="Help" />}
199199
>
200200
<Checkbox label="Option 1" id="alt-form-checkbox-1" name="alt-form-checkbox-1" />
201201
<Checkbox
@@ -211,9 +211,9 @@ export const TabsOpenDemo = () => {
211211
label="Description"
212212
fieldId="horizontal-form-select"
213213
isRequired
214-
labelHelp={<FormGroupLabelHelp aria-label="" />}
214+
labelHelp={<FormGroupLabelHelp aria-label="Help" />}
215215
>
216-
<TextArea autoResize value={description} onChange={handleDescriptionChange} />
216+
<TextArea id="horizontal-form-select" autoResize value={description} onChange={handleDescriptionChange} />
217217
</FormGroup>
218218
<ActionGroup>
219219
<Button variant="primary" onClick={handleSubmit}>

0 commit comments

Comments
 (0)