Merge pull request #3435 from zichuanwangcloud-gif/fix/ops-dashboard-chart-infinite-height

fix(ops): prevent monitoring trend cards from growing unbounded
This commit is contained in:
Wesley Liddick
2026-06-26 09:39:06 +08:00
committed by GitHub
@@ -44,7 +44,7 @@
<div class="lg:col-span-1 min-h-[360px]">
<OpsConcurrencyCard :platform-filter="platform" :group-id-filter="groupId" :refresh-token="dashboardRefreshToken" />
</div>
<div class="lg:col-span-1 min-h-[360px]">
<div class="lg:col-span-1 h-[360px]">
<OpsSwitchRateTrendChart
:points="switchTrend?.points ?? []"
:loading="loadingSwitchTrend"
@@ -52,7 +52,7 @@
:fullscreen="isFullscreen"
/>
</div>
<div class="lg:col-span-2 min-h-[360px]">
<div class="lg:col-span-2 h-[360px]">
<OpsThroughputTrendChart
:points="throughputTrend?.points ?? []"
:by-platform="throughputTrend?.by_platform ?? []"