We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d03ed0c commit 7f14f33Copy full SHA for 7f14f33
packages/suir-component-mapper/src/field-array/field-array.js
@@ -228,6 +228,7 @@ const DynamicArray = ({ ...props }) => {
228
<Button
229
icon="undo"
230
className="ddorg__suir__mapper__field-array-undo"
231
+ aria-label="undo"
232
{...UndoButtonProps}
233
type="button"
234
disabled={state.index === 0}
@@ -236,6 +237,7 @@ const DynamicArray = ({ ...props }) => {
236
237
238
icon="redo"
239
className="ddorg__suir__mapper__field-array-redo"
240
+ aria-label="redo"
241
{...RedoButtonProps}
242
243
disabled={state.index === state.history.length}
0 commit comments