Skip to content

Commit

Permalink
Merge pull request #99531 from cockroachdb/blathers/backport-release-…
Browse files Browse the repository at this point in the history
…23.1-99490

release-23.1: ui: fix Insights label
  • Loading branch information
maryliag authored Mar 25, 2023
2 parents 6be5755 + 4e8a609 commit f351747
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function TypeCell(value: InsightType): React.ReactElement {
insightType(value) === "FailedExecution"
? "insight-type-failed"
: "insight-type";
return <div className={cx(className)}>{value}</div>;
return <div className={cx(className)}>{insightType(value)}</div>;
}

const StatementExecution = ({
Expand Down

0 comments on commit f351747

Please sign in to comment.