We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea948ca commit 94baeffCopy full SHA for 94baeff
src/containers/Tenant/Diagnostics/TenantOverview/TenantOverview.js
@@ -171,18 +171,18 @@ class TenantOverview extends React.Component {
171
))}
172
</div>
173
<div className={b('common-info')}>
174
- {PoolStats ? (
175
- <div>
176
- <div className={b('section-title')}>Pools</div>
+ <div>
+ <div className={b('section-title')}>Pools</div>
+ {PoolStats ? (
177
<div className={b('section', {pools: true})}>
178
{PoolStats.map((pool, poolIndex) => (
179
<PoolUsage key={poolIndex} data={pool} />
180
181
182
- </div>
183
- ) : (
184
- <div className="error">no pools data</div>
185
- )}
+ ) : (
+ <div className="error">no pools data</div>
+ )}
+ </div>
186
<InfoViewer
187
title="Metrics"
188
className={b('section', {metrics: true})}
0 commit comments