Skip to content

Commit e8bfe99

Browse files
fix(ObjectSummary): fix wrong tree alignment bug (#486)
1 parent cf96f9a commit e8bfe99

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/containers/Tenant/ObjectSummary/ObjectSummary.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,12 @@ export function ObjectSummary({
218218
};
219219

220220
const renderLoader = () => {
221-
return <Loader />;
221+
// If Loader isn't wrapped with div, SplitPane doesn't calculate panes height correctly
222+
return (
223+
<div>
224+
<Loader />
225+
</div>
226+
);
222227
};
223228

224229
const renderTabContent = () => {

0 commit comments

Comments
 (0)