diff options
author | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2021-08-03 11:08:00 +0200 |
---|---|---|
committer | Aijana Schumann <aijana.schumann@highstreet-technologies.com> | 2021-08-03 11:08:00 +0200 |
commit | 96d32fbfa1c0dcda85db3d06edaff36267023cfa (patch) | |
tree | 12ad8b4632923e1b738a0b7d36eed03e76c294ae /sdnr/wt/odlux/apps/configurationApp/src | |
parent | cef88ce423c3c974caf52cb81702e25807885cd3 (diff) |
Add aria-labels to odlux tables
Add aria-labels to all table action buttons
Issue-ID: CCSDK-3396
Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com>
Change-Id: I1c3922c1d195727265882d3e3362607ab558d603
Diffstat (limited to 'sdnr/wt/odlux/apps/configurationApp/src')
-rw-r--r-- | sdnr/wt/odlux/apps/configurationApp/src/views/configurationApplication.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/src/views/configurationApplication.tsx b/sdnr/wt/odlux/apps/configurationApp/src/views/configurationApplication.tsx index e466dbacc..db426e814 100644 --- a/sdnr/wt/odlux/apps/configurationApp/src/views/configurationApplication.tsx +++ b/sdnr/wt/odlux/apps/configurationApp/src/views/configurationApplication.tsx @@ -588,7 +588,8 @@ class ConfigurationApplicationComponent extends React.Component<ConfigurationApp const addNewElementAction = { icon: AddIcon, - tooltip: 'Add', + tooltip: 'Add', + ariaLabel:'add-element', onClick: () => { navigate("[]"); // empty key means new element }, @@ -597,7 +598,8 @@ class ConfigurationApplicationComponent extends React.Component<ConfigurationApp const addWithApiDocElementAction = { icon: PostAdd, - tooltip: 'Add', + tooltip: 'Add', + ariaLabel:'add-element-via-api-doc', onClick: () => { window.open(apiDocPathCreate, '_blank'); }, |