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 9b1ce0b commit 6ac735cCopy full SHA for 6ac735c
apps/webapp/app/components/code/TSQLResultsTable.tsx
@@ -178,13 +178,17 @@ function CellValue({
178
? runStatusFromFriendlyTitle(value)
179
: undefined;
180
if (status) {
181
- return (
182
- <SimpleTooltip
183
- content={descriptionForTaskRunStatus(status)}
184
- disableHoverableContent
185
- button={<TaskRunStatusCombo status={status} />}
186
- />
187
- );
+ if (hovered) {
+ return (
+ <SimpleTooltip
+ content={descriptionForTaskRunStatus(status)}
+ disableHoverableContent
+ button={<TaskRunStatusCombo status={status} />}
+ />
188
+ );
189
+ }
190
+
191
+ return <TaskRunStatusCombo status={status} />;
192
}
193
break;
194
0 commit comments