Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/src/content/docs/components/select-input.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ To display a helper link below selects, use a standard small link [with `.link`
<div class="select-input">
<div class="select-input-container">
<label id="labelSelectWithLink" for="exampleSelectWithLink">Select example with link text</label>
<select class="select-input-field" id="exampleSelectWithLink">
<select class="select-input-field" id="exampleSelectWithLink" aria-describedby="selectTextLink">
<option value="" disabled selected></option>
<option value="1">One</option>
<option value="2">Two</option>
Expand Down
2 changes: 1 addition & 1 deletion site/src/content/docs/components/text-area.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ To display a helper link below text areas, use a standard small link [with `.lin
<div class="text-area">
<div class="text-area-container mt-large">
<label id="labelTextAreaHelperLink" for="textAreaHelperLink">Additional comments</label>
<textarea id="textAreaHelperLink" class="text-area-field" placeholder=" "></textarea>
<textarea id="textAreaHelperLink" aria-describedby="feedbackTextHelpMoreLink" class="text-area-field" placeholder=" "></textarea>
</div>
<a href="#" id="feedbackTextHelpMoreLink" aria-labelledby="feedbackTextHelpMoreLink labelTextAreaHelperLink" class="link link-small">
More information <span class="visually-hidden">on</span>
Expand Down
Loading