Skip to content

Commit 211f808

Browse files
committed
removed input from ariaLabel default value
1 parent d2e9bcb commit 211f808

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/website/screens/components/slider/code/SliderCodePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const sections = [
221221
<td>
222222
Specifies a string to be used as the name for the slider element when no <Code>label</Code> is provided.
223223
</td>
224-
<td>'Slider input'</td>
224+
<td>'Slider'</td>
225225
</tr>
226226
</tbody>
227227
</DxcTable>

packages/lib/src/slider/Slider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const DxcSlider = forwardRef<RefType, SliderPropsType>(
248248
labelFormatCallback,
249249
margin,
250250
size = "fillParent",
251-
ariaLabel = "Slider input",
251+
ariaLabel = "Slider",
252252
},
253253
ref
254254
): JSX.Element => {

0 commit comments

Comments
 (0)