Skip to content

Commit

Permalink
Merge pull request #2516 from headlamp-k8s/multi-fields
Browse files Browse the repository at this point in the history
frontend: Fix missing cluster fields in list views for multi cluster
  • Loading branch information
illume authored Nov 4, 2024
2 parents caf13c2 + 3f7e925 commit a620185
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/components/cluster/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ function EventsSection() {
gridTemplate: 1.5,
},
'namespace',
'cluster',
{
label: t('Reason'),
getValue: event => event.reason,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/node/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default function NodeList() {
resourceClass={Node}
columns={[
'name',
'cluster',
{
id: 'cpu',
label: t('CPU'),
Expand Down Expand Up @@ -143,7 +144,6 @@ export default function NodeList() {
},
show: false,
},
'cluster',
'age',
]}
/>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/resourceQuota/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export function ResourceQuotaRenderer(props: ResourceQuotaProps) {
columns={[
'name',
'namespace',
'cluster',
{
id: 'requests',
label: t('translation|Request'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default function ValidatingWebhookConfigurationList() {
resourceClass={ValidatingWebhookConfiguration}
columns={[
'name',
'cluster',
{
id: 'webhooks',
label: t('Webhooks'),
Expand Down

0 comments on commit a620185

Please sign in to comment.