Browse Source

fix(perf): Fix bad layout of sample panel when docked to bottom (#66790)

It doesn't render correctly inside a grid layout! Needs to be lifted
out. Ideally the CSS would position it correctly regardless of context,
but one thing at a time.
George Gritsouk 1 year ago
parent
commit
755c6d29c4
1 changed files with 6 additions and 6 deletions
  1. 6 6
      static/app/views/performance/database/databaseSpanSummaryPage.tsx

+ 6 - 6
static/app/views/performance/database/databaseSpanSummaryPage.tsx

@@ -233,13 +233,13 @@ function SpanSummaryPage({params}: Props) {
                 />
               </ModuleLayout.Full>
             )}
-
-            <SampleList
-              groupId={span[SpanMetricsField.SPAN_GROUP]}
-              transactionName={transaction}
-              transactionMethod={transactionMethod}
-            />
           </ModuleLayout.Layout>
+
+          <SampleList
+            groupId={span[SpanMetricsField.SPAN_GROUP]}
+            transactionName={transaction}
+            transactionMethod={transactionMethod}
+          />
         </Layout.Main>
       </Layout.Body>
     </ModulePageProviders>