fix: provide HelpButton title prop (#6209)
Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
parent
5c0b15ce2b
commit
34a7d48b95
@ -1,7 +1,7 @@
|
|||||||
|
import { t } from "../i18n";
|
||||||
import { HelpIcon } from "./icons";
|
import { HelpIcon } from "./icons";
|
||||||
|
|
||||||
type HelpButtonProps = {
|
type HelpButtonProps = {
|
||||||
title?: string;
|
|
||||||
name?: string;
|
name?: string;
|
||||||
id?: string;
|
id?: string;
|
||||||
onClick?(): void;
|
onClick?(): void;
|
||||||
@ -12,8 +12,8 @@ export const HelpButton = (props: HelpButtonProps) => (
|
|||||||
className="help-icon"
|
className="help-icon"
|
||||||
onClick={props.onClick}
|
onClick={props.onClick}
|
||||||
type="button"
|
type="button"
|
||||||
title={`${props.title} — ?`}
|
title={`${t("helpDialog.title")} — ?`}
|
||||||
aria-label={props.title}
|
aria-label={t("helpDialog.title")}
|
||||||
>
|
>
|
||||||
{HelpIcon}
|
{HelpIcon}
|
||||||
</button>
|
</button>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user