Skip to content

Commit

Permalink
[OPIK-208] [UX Improvements] Make score reasons easier to compare
Browse files Browse the repository at this point in the history
  • Loading branch information
andriidudar committed Oct 4, 2024
1 parent 3714e62 commit 307c4af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const FeedbackScoreTag: React.FunctionComponent<FeedbackScoreTagProps> = ({
const isRemovable = isFunction(onDelete);

const Reason = reason ? (
<TooltipWrapper content={reason}>
<TooltipWrapper content={reason} delayDuration={100}>
<MessageSquareMore className="size-3.5 text-light-slate" />
</TooltipWrapper>
) : null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const FeedbackScoreValueCell = (
const feedbackScore = context.row.original;
const value = context.getValue();
const Reason = feedbackScore.reason ? (
<TooltipWrapper content={feedbackScore.reason}>
<TooltipWrapper content={feedbackScore.reason} delayDuration={100}>
<MessageSquareMore className="size-4 text-light-slate" />
</TooltipWrapper>
) : null;
Expand Down

0 comments on commit 307c4af

Please sign in to comment.