Do not render tooltip when RA is displayed on TAC (#12472)
This commit is contained in:
@@ -26,6 +26,10 @@ import { NotificationLevel } from "../../../../stores/notifications/Notification
|
||||
import { notificationLevelToIndicator } from "../../../../utils/notifications";
|
||||
|
||||
interface ThreadsActivityCentreButtonProps extends ComponentProps<typeof IconButton> {
|
||||
/**
|
||||
* Whether to disable the tooltip.
|
||||
*/
|
||||
disableTooltip?: boolean;
|
||||
/**
|
||||
* Display the `Threads` label next to the icon.
|
||||
*/
|
||||
@@ -40,9 +44,12 @@ interface ThreadsActivityCentreButtonProps extends ComponentProps<typeof IconBut
|
||||
* A button to open the thread activity centre.
|
||||
*/
|
||||
export const ThreadsActivityCentreButton = forwardRef<HTMLButtonElement, ThreadsActivityCentreButtonProps>(
|
||||
function ThreadsActivityCentreButton({ displayLabel, notificationLevel, ...props }, ref): React.JSX.Element {
|
||||
function ThreadsActivityCentreButton(
|
||||
{ displayLabel, notificationLevel, disableTooltip, ...props },
|
||||
ref,
|
||||
): React.JSX.Element {
|
||||
// Disable tooltip when the label is displayed
|
||||
const openTooltip = displayLabel ? false : undefined;
|
||||
const openTooltip = disableTooltip || displayLabel ? false : undefined;
|
||||
|
||||
return (
|
||||
<Tooltip label={_t("common|threads")} placement="right" open={openTooltip}>
|
||||
|
||||
Reference in New Issue
Block a user