💬 fix: update aria-label for accessibility in ConvoLink (#7320)

This commit is contained in:
Marco Beretta 2025-05-12 14:12:51 +02:00 committed by GitHub
parent 5a43f87584
commit 6dd1b39886
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ const ConvoLink: React.FC<ConvoLinkProps> = ({
onRename(); onRename();
}} }}
role="button" role="button"
aria-label={isSmallScreen ? undefined : localize('com_ui_double_click_to_rename')} aria-label={isSmallScreen ? undefined : title || localize('com_ui_untitled')}
> >
{title || localize('com_ui_untitled')} {title || localize('com_ui_untitled')}
</div> </div>