diff --git a/src/components/Insights/InsightsPage/index.tsx b/src/components/Insights/InsightsPage/index.tsx index c2cec787c..ff03e4683 100644 --- a/src/components/Insights/InsightsPage/index.tsx +++ b/src/components/Insights/InsightsPage/index.tsx @@ -14,7 +14,6 @@ import { CardsIcon } from "../../common/icons/CardsIcon"; import { DurationBreakdownInsight } from "../DurationBreakdownInsight"; import { EndpointQueryOptimizationInsight } from "../EndpointQueryOptimizationInsight"; import { QueryOptimizationInsight } from "../QueryOptimizationInsight"; -import { TopUsageInsight } from "../TopUsageInsight"; import { actions } from "../actions"; import { DurationInsight } from "../common/insights/DurationInsight"; import { EndpointBottleneckInsight } from "../common/insights/EndpointBottleneckInsight"; @@ -29,6 +28,7 @@ import { SlowEndpointInsight } from "../common/insights/SlowEndpointInsight"; import { SpanEndpointBottleneckInsight } from "../common/insights/SpanEndpointBottleneckInsight"; import { SpanNPlusOneInsight } from "../common/insights/SpanNPlusOneInsight"; import { SpanNexusInsight } from "../common/insights/SpanNexusInsight"; +import { TopUsageInsight } from "../common/insights/TopUsageInsight"; import { TrafficInsight } from "../common/insights/TrafficInsight"; import { Description } from "../styles"; import { trackingEvents } from "../tracking"; diff --git a/src/components/Insights/PerformanceAtScaleInsight/styles.ts b/src/components/Insights/PerformanceAtScaleInsight/styles.ts index ad206066f..d260f5cc7 100644 --- a/src/components/Insights/PerformanceAtScaleInsight/styles.ts +++ b/src/components/Insights/PerformanceAtScaleInsight/styles.ts @@ -44,7 +44,7 @@ export const TableHeaderCell = styled.th` padding: 0; &:last-child { - text-align: right; + text-align: end; } `; @@ -57,11 +57,11 @@ export const TableBodyCell = styled.td` padding: 0; &:first-child { - text-align: left; + text-align: start; } &:last-child { - text-align: right; + text-align: end; } `; diff --git a/src/components/Insights/RequestBreakdownInsight/styles.ts b/src/components/Insights/RequestBreakdownInsight/styles.ts index d03eb11ed..976306801 100644 --- a/src/components/Insights/RequestBreakdownInsight/styles.ts +++ b/src/components/Insights/RequestBreakdownInsight/styles.ts @@ -97,7 +97,7 @@ export const TableHead = styled.thead` `; export const TableHeaderCell = styled.th` - text-align: left; + text-align: start; font-weight: 400; padding-left: 4px; padding-bottom: 8px; @@ -128,7 +128,7 @@ export const TableBodyCell = styled.td` &:last-child { padding: 4px 4px 4px 22px; - text-align: right; + text-align: end; } `; diff --git a/src/components/Insights/common/InsightCard/index.tsx b/src/components/Insights/common/InsightCard/index.tsx index 98b1a4a9e..05102e3a0 100644 --- a/src/components/Insights/common/InsightCard/index.tsx +++ b/src/components/Insights/common/InsightCard/index.tsx @@ -139,7 +139,7 @@ export const InsightCard = (props: InsightCardProps) => { )} {props.onJiraButtonClick && ( - + { const buttons = traceId && config.isJaegerEnabled ? [ -