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.pull/28788/head^2
parent
72c42482f9
commit
1d1860842e
|
@ -246,9 +246,9 @@ export const Lobby: FC<LobbyProps> = ({ room, joinCallButtonDisabled, joinCallBu
|
||||||
kind="primary"
|
kind="primary"
|
||||||
disabled={connecting || joinCallButtonDisabled}
|
disabled={connecting || joinCallButtonDisabled}
|
||||||
onClick={onConnectClick}
|
onClick={onConnectClick}
|
||||||
title={_t("Join")}
|
|
||||||
label={_t("Join")}
|
label={_t("Join")}
|
||||||
tooltip={connecting ? _t("Connecting") : joinCallButtonTooltip}
|
tooltip={connecting ? _t("Connecting") : joinCallButtonTooltip}
|
||||||
|
alignment={Alignment.Bottom}
|
||||||
/>
|
/>
|
||||||
</div>;
|
</div>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue