fix(catalog-react) : fixing accessibility issue
Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>
This commit is contained in:
@@ -80,8 +80,19 @@ export const EntityDisplayName = (
|
||||
|
||||
// The innermost "body" content
|
||||
let content = (
|
||||
<Tooltip title={primaryTitle} placement="top" arrow>
|
||||
<Typography noWrap>{primaryTitle}</Typography>
|
||||
<Tooltip
|
||||
title={primaryTitle}
|
||||
placement="top"
|
||||
arrow
|
||||
aria-label={primaryTitle}
|
||||
>
|
||||
<Typography
|
||||
noWrap
|
||||
title={primaryTitle}
|
||||
aria-describedby="tooltip-description"
|
||||
>
|
||||
{primaryTitle}
|
||||
</Typography>
|
||||
</Tooltip>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user