Skip to content

Commit fa7ef2b

Browse files
committed
removed input from ariaLabel default value
1 parent a8b283a commit fa7ef2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/website/screens/components/select/code/SelectCodePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ const sections = [
276276
<td>
277277
Specifies a string to be used as the name for the select element when no <Code>label</Code> is provided.
278278
</td>
279-
<td>'Select input'</td>
279+
<td>'Select'</td>
280280
</tr>
281281
</tbody>
282282
</DxcTable>

packages/lib/src/select/Select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const DxcSelect = forwardRef<RefType, SelectPropsType>(
5252
margin,
5353
size = "medium",
5454
tabIndex = 0,
55-
ariaLabel = "Select input",
55+
ariaLabel = "Select",
5656
},
5757
ref
5858
): JSX.Element => {

0 commit comments

Comments
 (0)