Skip to content

Commit 94baeff

Browse files
committed
fix(Tenant): always display Pools heading
1 parent ea948ca commit 94baeff

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/containers/Tenant/Diagnostics/TenantOverview/TenantOverview.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -171,18 +171,18 @@ class TenantOverview extends React.Component {
171171
))}
172172
</div>
173173
<div className={b('common-info')}>
174-
{PoolStats ? (
175-
<div>
176-
<div className={b('section-title')}>Pools</div>
174+
<div>
175+
<div className={b('section-title')}>Pools</div>
176+
{PoolStats ? (
177177
<div className={b('section', {pools: true})}>
178178
{PoolStats.map((pool, poolIndex) => (
179179
<PoolUsage key={poolIndex} data={pool} />
180180
))}
181181
</div>
182-
</div>
183-
) : (
184-
<div className="error">no pools data</div>
185-
)}
182+
) : (
183+
<div className="error">no pools data</div>
184+
)}
185+
</div>
186186
<InfoViewer
187187
title="Metrics"
188188
className={b('section', {metrics: true})}

0 commit comments

Comments
 (0)