Skip to content

Commit

Permalink
ui: fix Insights label
Browse files Browse the repository at this point in the history
A prior commit removed the formatting of Insight type.
This commit adds it back, to display the correct formatting.

Epic: None

Release note: None
  • Loading branch information
maryliag committed Mar 24, 2023
1 parent 96a9871 commit ea27e2d
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 ea27e2d

Please sign in to comment.