fix: fix size problem in <GroupExtraDataPanel />

If height is too large, should display scrollbar
pull/90/head
moonrailgun 2 years ago
parent 07594343a1
commit 53e476d8a8

@ -117,8 +117,8 @@ const GroupExtraDataPanelInner: React.FC<GroupExtraDataPanelInnerProps> =
: [] : []
} }
> >
<Loading spinning={loading}> <Loading className="h-full w-full" spinning={loading}>
<div>{props.render(info)}</div> <div className="overflow-auto h-full">{props.render(info)}</div>
</Loading> </Loading>
</GroupPanelContainer> </GroupPanelContainer>
); );

Loading…
Cancel
Save