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} />
|
<PodDetailsSecrets pod={pod} />
|
||||||
</DrawerItem>
|
</DrawerItem>
|
||||||
|
|
||||||
{
|
{initContainers.length > 0 && (
|
||||||
initContainers.length > 0 && (
|
<>
|
||||||
<>
|
<DrawerTitle>Init Containers</DrawerTitle>
|
||||||
<DrawerTitle>Init Containers</DrawerTitle>
|
{initContainers.map(container => (
|
||||||
{initContainers.map(container => (
|
<PodDetailsContainer
|
||||||
<PodDetailsContainer
|
key={container.name}
|
||||||
key={container.name}
|
pod={pod}
|
||||||
pod={pod}
|
container={container}
|
||||||
container={container}
|
/>
|
||||||
/>
|
))}
|
||||||
))}
|
</>
|
||||||
</>
|
)}
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
<DrawerTitle>Containers</DrawerTitle>
|
<DrawerTitle>Containers</DrawerTitle>
|
||||||
{
|
{containers.map(container => (
|
||||||
containers.map(container => (
|
<PodDetailsContainer
|
||||||
<PodDetailsContainer
|
key={container.name}
|
||||||
key={container.name}
|
pod={pod}
|
||||||
pod={pod}
|
container={container}
|
||||||
container={container}
|
metrics={getItemMetrics(toJS(this.containerMetrics), container.name)}
|
||||||
metrics={getItemMetrics(toJS(this.containerMetrics), container.name)}
|
/>
|
||||||
/>
|
))}
|
||||||
))
|
|
||||||
}
|
|
||||||
|
|
||||||
<PodVolumes pod={pod} />
|
<PodVolumes pod={pod} />
|
||||||
</div >
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user