Skip to content
Snippets Groups Projects
Unverified Commit 5707fcdc authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Fix model metadata tooltip visibility (#45508)

parent 534951b7
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,8 @@ import { useRef } from "react";
import { useHoverDirty } from "react-use";
import { t } from "ttag";
import Tooltip from "metabase/core/components/Tooltip";
import { color } from "metabase/lib/colors";
import { Tooltip } from "metabase/ui";
import type Question from "metabase-lib/v1/Question";
import { getDatasetMetadataCompletenessPercentage } from "metabase-lib/v1/metadata/utils/models";
......@@ -52,7 +52,7 @@ type Props = {
dataset: Question;
};
const TOOLTIP_DELAY: [number, null] = [700, null];
const TOOLTIP_DELAY = 700;
function DatasetMetadataStrengthIndicator({ dataset, ...props }: Props) {
const rootRef = useRef<HTMLDivElement>(null);
......@@ -69,9 +69,9 @@ function DatasetMetadataStrengthIndicator({ dataset, ...props }: Props) {
return (
<Root {...props} ref={rootRef}>
<Tooltip
tooltip={getTooltipMessage(percentage)}
delay={TOOLTIP_DELAY}
placement="bottom"
label={getTooltipMessage(percentage)}
openDelay={TOOLTIP_DELAY}
position="bottom"
>
<PercentageLabel
color={indicationColor}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment