mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Add tooltips to mini sso buttons
This commit is contained in:
parent
2c2cf4c073
commit
1eb88c988c
1 changed files with 3 additions and 2 deletions
|
@ -23,6 +23,7 @@ import PlatformPeg from "../../../PlatformPeg";
|
|||
import AccessibleButton from "./AccessibleButton";
|
||||
import {_t} from "../../../languageHandler";
|
||||
import {IdentityProviderBrand, IIdentityProvider, ISSOFlow} from "../../../Login";
|
||||
import AccessibleTooltipButton from "./AccessibleTooltipButton";
|
||||
|
||||
interface ISSOButtonProps extends Omit<IProps, "flow"> {
|
||||
idp: IIdentityProvider;
|
||||
|
@ -84,9 +85,9 @@ const SSOButton: React.FC<ISSOButtonProps> = ({
|
|||
if (mini) {
|
||||
// TODO fallback icon
|
||||
return (
|
||||
<AccessibleButton {...props} className={classes} kind={kind} onClick={onClick}>
|
||||
<AccessibleTooltipButton {...props} title={label} className={classes} kind={kind} onClick={onClick}>
|
||||
{ icon }
|
||||
</AccessibleButton>
|
||||
</AccessibleTooltipButton>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue