From 1b54ba3e6ed57474fdd3dae0f584b73c698b2e60 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 30 Sep 2025 11:19:13 -0700 Subject: [PATCH] MetricsTable anchor more to bottom of component --- src/components/metrics/MetricsTable.tsx | 28 ++++++++++++++----------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/components/metrics/MetricsTable.tsx b/src/components/metrics/MetricsTable.tsx index fa363eec..b84fef23 100644 --- a/src/components/metrics/MetricsTable.tsx +++ b/src/components/metrics/MetricsTable.tsx @@ -73,19 +73,23 @@ export function MetricsTable({ isFetching={isFetching} isLoading={isLoading} error={error} - minHeight="380px" + minHeight="400px" > - {data && } - {showMore && limit && ( - - - - - - {formatMessage(labels.more)} - - - )} +
+
{data && }
+
+ {showMore && limit && ( + + + + + + {formatMessage(labels.more)} + + + )} +
+
); }