style: reformat with prettier to resolve eslint/prettier conflict

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
DevContainer User
2026-03-04 12:46:54 +00:00
parent f26d1414b2
commit 5c57f52abc
5 changed files with 55 additions and 55 deletions
+5 -5
View File
@@ -228,11 +228,11 @@ function ServiceDetailPanel({
{ label: 'Protocol', getter: p => p.protocol ?? 'TCP' },
...(service.spec.ports?.some((p: { nodePort?: number }) => p.nodePort)
? [
{
label: 'NodePort',
getter: (p: { nodePort?: number }) => String(p.nodePort ?? '—'),
},
]
{
label: 'NodePort',
getter: (p: { nodePort?: number }) => String(p.nodePort ?? '—'),
},
]
: []),
]}
data={service.spec.ports}