Skip to content

Commit

Permalink
fix :: 순서 바뀐거
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Jul 31, 2024
1 parent a2931cd commit 90548d3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/pages/Team/deploy/Container/HaveContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,28 +113,28 @@ export const TeamDeployHaveContainer = () => {
</div>
</div>
<div>
{index === 0 && prodMemory && (
{index === 0 && stagMemory && (
<div>
<span>메모리</span>
<ContainerGraph jsonData={prodMemory} />
<ContainerGraph jsonData={stagMemory} />
</div>
)}
{index === 0 && prodCpu && (
{index === 0 && stagCpu && (
<div>
<span>CPU</span>
<ContainerGraph jsonData={prodCpu} />
<ContainerGraph jsonData={stagCpu} />
</div>
)}
{index === 1 && stagMemory && (
{index === 1 && prodMemory && (
<div>
<span>메모리</span>
<ContainerGraph jsonData={stagMemory} />
<ContainerGraph jsonData={prodMemory} />
</div>
)}
{index === 1 && stagCpu && (
{index === 1 && prodCpu && (
<div>
<span>CPU</span>
<ContainerGraph jsonData={stagCpu} />
<ContainerGraph jsonData={prodCpu} />
</div>
)}
</div>
Expand Down

0 comments on commit 90548d3

Please sign in to comment.