Merge pull request #729 from vector-im/dbkr/minor_a11y_fixes
A couple of minor a11y fixes
This commit is contained in:
@@ -88,8 +88,14 @@ interface HeaderLogoProps {
|
||||
}
|
||||
|
||||
export function HeaderLogo({ className }: HeaderLogoProps) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<Link className={classNames(styles.headerLogo, className)} to="/">
|
||||
<Link
|
||||
className={classNames(styles.headerLogo, className)}
|
||||
to="/"
|
||||
aria-label={t("Element Call Home")}
|
||||
>
|
||||
<Logo />
|
||||
</Link>
|
||||
);
|
||||
|
||||
@@ -48,6 +48,7 @@ export function CopyButton({
|
||||
className={className}
|
||||
onPress={setCopied}
|
||||
iconStyle={isCopied ? "stroke" : "fill"}
|
||||
aria-label={t("Copy")}
|
||||
>
|
||||
{isCopied ? (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user