mirror of https://github.com/vector-im/riot-web
Improve the tooltips on the call lobby join button (#9428)
Currently they display a redundant 'Join' tooltip on hover, and place the tooltip on the left. This removes the redundant tooltip and places the tooltip below the button, which looks a bit more balanced.t3chguy/dedup-icons-17oct
parent
72c42482f9
commit
1d1860842e
|
@ -246,9 +246,9 @@ export const Lobby: FC<LobbyProps> = ({ room, joinCallButtonDisabled, joinCallBu
|
|||
kind="primary"
|
||||
disabled={connecting || joinCallButtonDisabled}
|
||||
onClick={onConnectClick}
|
||||
title={_t("Join")}
|
||||
label={_t("Join")}
|
||||
tooltip={connecting ? _t("Connecting") : joinCallButtonTooltip}
|
||||
alignment={Alignment.Bottom}
|
||||
/>
|
||||
</div>;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue