Skip to content

Commit 625781f

Browse files
authored
fix it (#5072)
1 parent 582d21b commit 625781f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

web/components/templates/dashboard/panels/topProvidersPanel.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ const TopProvidersPanel = (props: TopProvidersPanelProps) => {
4343
withAnimation={true}
4444
headerAction={expandButton}
4545
>
46-
<div className="flex flex-row items-center justify-between pb-2">
47-
<p className="text-xs font-semibold text-slate-700">Provider</p>
48-
<p className="text-xs font-semibold text-slate-700">Requests</p>
46+
<div className="flex h-full flex-col overflow-hidden">
47+
<div className="flex flex-row items-center justify-between pb-2">
48+
<p className="text-xs font-semibold text-slate-700">Provider</p>
49+
<p className="text-xs font-semibold text-slate-700">Requests</p>
50+
</div>
51+
<div className="flex-grow overflow-y-auto">{barList}</div>
4952
</div>
50-
{barList}
5153
</StyledAreaChart>
5254
{modal}
5355
</>

0 commit comments

Comments
 (0)