diff options
author | KAPIL SINGAL <ks220y@att.com> | 2021-08-03 16:25:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-08-03 16:25:25 +0000 |
commit | c51fd5692565983658c1daa12ecae6adebc257d5 (patch) | |
tree | 0172f94532605c0ec68d3f9d4e755e420d7e41ae /sdnr/wt/odlux/apps/configurationApp | |
parent | 53cb85faef848051ca1264b30e9a279f56b04631 (diff) | |
parent | 96d32fbfa1c0dcda85db3d06edaff36267023cfa (diff) |
Merge "Add aria-labels to odlux tables"
Diffstat (limited to 'sdnr/wt/odlux/apps/configurationApp')
-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'); }, |