We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe30b0 commit 7ca5ebeCopy full SHA for 7ca5ebe
apps/webapp/app/components/code/TSQLResultsTable.tsx
@@ -493,16 +493,14 @@ function CellValue({
493
? runStatusFromFriendlyTitle(value)
494
: undefined;
495
if (status) {
496
- if (hovered) {
497
- return (
498
- <SimpleTooltip
499
- content={descriptionForTaskRunStatus(status)}
500
- disableHoverableContent
501
- button={<TaskRunStatusCombo status={status} />}
502
- />
503
- );
504
- }
505
- return <TaskRunStatusCombo status={status} />;
+ return (
+ <SimpleTooltip
+ content={descriptionForTaskRunStatus(status)}
+ disableHoverableContent
+ hidden={!hovered}
+ button={<TaskRunStatusCombo status={status} />}
+ />
+ );
506
}
507
break;
508
0 commit comments