Skip to content

Commit

Permalink
Merge pull request #214 from amosproj/fix/show-resource-names-on-deta…
Browse files Browse the repository at this point in the history
…il-pages

fix: show names instead of db IDs
  • Loading branch information
smnws committed Jul 17, 2023
2 parents 9c7bcc2 + bd8f555 commit 11439d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Explorer/src/components/container_detail_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function ContainerDetailPage({
return (
<div>
<div className="flex">
<H1 content={"Container ID " + container_details.id} />
<H1 content={"Container " + container_details.name} />
<HealthIndicatorBadge status={container_details.status} />
</div>
<div className="flex">
Expand Down
2 changes: 1 addition & 1 deletion Explorer/src/components/pod_detail_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function PodDetailPage({
return (
<div>
<div className="flex">
<H1 content={"Pod ID " + pod_details.id} />
<H1 content={"Pod " + pod_details.name} />
<HealthIndicatorBadge status={pod_details.status_phase} />
</div>
<div className="flex">
Expand Down

0 comments on commit 11439d4

Please sign in to comment.