diff --git a/x-pack/plugins/ml/public/application/components/custom_selection_table/custom_selection_table.js b/x-pack/plugins/ml/public/application/components/custom_selection_table/custom_selection_table.js index d52d22f6b4aa..23cdfbcdfb2b 100644 --- a/x-pack/plugins/ml/public/application/components/custom_selection_table/custom_selection_table.js +++ b/x-pack/plugins/ml/public/application/components/custom_selection_table/custom_selection_table.js @@ -192,6 +192,7 @@ export function CustomSelectionTable({ toggleItem(item[tableItemId])} type="inList" @@ -288,6 +293,13 @@ export function CustomSelectionTable({ id={item[tableItemId]} data-test-subj={`${item[tableItemId]}-radio-button`} checked={isItemSelected(item[tableItemId])} + aria-label={i18n.translate( + 'xpack.ml.jobSelector.customTable.singleSelectionRadioButtonAriaLabel', + { + defaultMessage: 'Select job {itemId}', + values: { itemId: item[tableItemId] }, + } + )} onChange={() => toggleItem(item[tableItemId])} disabled={radioDisabledCheck !== undefined ? radioDisabledCheck(item) : undefined} /> @@ -368,7 +380,7 @@ export function CustomSelectionTable({ fullWidth isInvalid={error !== null} error={getError(error)} - style={{ maxHeight: '0px' }} + css={{ maxHeight: '0px' }} >