mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Reverted formatting
Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
This commit is contained in:
parent
6fa18b4b60
commit
9baf414d01
@ -158,35 +158,31 @@ export class PodDetails extends React.Component<PodDetailsProps> {
|
||||
<PodDetailsSecrets pod={pod} />
|
||||
</DrawerItem>
|
||||
|
||||
{
|
||||
initContainers.length > 0 && (
|
||||
<>
|
||||
<DrawerTitle>Init Containers</DrawerTitle>
|
||||
{initContainers.map(container => (
|
||||
<PodDetailsContainer
|
||||
key={container.name}
|
||||
pod={pod}
|
||||
container={container}
|
||||
/>
|
||||
))}
|
||||
</>
|
||||
)
|
||||
}
|
||||
{initContainers.length > 0 && (
|
||||
<>
|
||||
<DrawerTitle>Init Containers</DrawerTitle>
|
||||
{initContainers.map(container => (
|
||||
<PodDetailsContainer
|
||||
key={container.name}
|
||||
pod={pod}
|
||||
container={container}
|
||||
/>
|
||||
))}
|
||||
</>
|
||||
)}
|
||||
|
||||
<DrawerTitle>Containers</DrawerTitle>
|
||||
{
|
||||
containers.map(container => (
|
||||
<PodDetailsContainer
|
||||
key={container.name}
|
||||
pod={pod}
|
||||
container={container}
|
||||
metrics={getItemMetrics(toJS(this.containerMetrics), container.name)}
|
||||
/>
|
||||
))
|
||||
}
|
||||
{containers.map(container => (
|
||||
<PodDetailsContainer
|
||||
key={container.name}
|
||||
pod={pod}
|
||||
container={container}
|
||||
metrics={getItemMetrics(toJS(this.containerMetrics), container.name)}
|
||||
/>
|
||||
))}
|
||||
|
||||
<PodVolumes pod={pod} />
|
||||
</div >
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user