Просмотр исходного кода

feat(aggregate-waterfall): Use full width for aggregate waterfall view (#57525)

Ash Anand 1 год назад
Родитель
Сommit
4f10fbc3fb

+ 1 - 1
static/app/views/performance/transactionSummary/aggregateSpanWaterfall/index.tsx

@@ -42,7 +42,7 @@ function AggregateSpanWaterfall(): React.ReactElement {
         getDocumentTitle={() => t(`Aggregate Waterfall: %s`, transaction)}
         childComponent={() => {
           return (
-            <Layout.Main>
+            <Layout.Main fullWidth>
               {defined(transaction) && <AggregateSpans transaction={transaction} />}
             </Layout.Main>
           );