Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Improve the tooltips on the call lobby join button #9428

Merged
merged 1 commit into from
Oct 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Improve the tooltips on the call lobby join button
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.
robintown committed Oct 17, 2022
commit 98da0f611f7e7bc12e572b3ae078dbe67bb2ea4a
2 changes: 1 addition & 1 deletion src/components/views/voip/CallView.tsx
Original file line number Diff line number Diff line change
@@ -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>;
};