diff --git a/packages/playground/src/components/k8s_deployment_table.vue b/packages/playground/src/components/k8s_deployment_table.vue index 6326e7d34b..db595ae2d9 100644 --- a/packages/playground/src/components/k8s_deployment_table.vue +++ b/packages/playground/src/components/k8s_deployment_table.vue @@ -72,10 +72,17 @@ :headers="[ { title: 'PLACEHOLDER', key: 'data-table-select' }, { title: 'Name', key: 'name' }, - { title: 'Public IPv4', key: 'ipv4', sortable: false }, - { title: 'Public IPv6', key: 'ipv6', sortable: false }, - { title: 'Planetary Network IP', key: 'planetary', sortable: false }, - { title: 'Mycelium Network IP', key: 'mycelium', sortable: false }, + { + title: 'Networks', + key: 'networks', + sortable: false, + children: [ + { title: 'Public IPv4', key: 'ipv4', sortable: false }, + { title: 'Public IPv6', key: 'ipv6', sortable: false }, + { title: 'Planetary IP', key: 'planetary', sortable: false }, + { title: 'Mycelium IP', key: 'mycelium', sortable: false }, + ], + }, { title: 'Workers', key: 'workersLength' }, { title: 'Billing Rate', key: 'billing' }, { title: 'Created At', key: 'created' }, diff --git a/packages/playground/src/components/list_table.vue b/packages/playground/src/components/list_table.vue index fdc08adc0f..aa57732f04 100644 --- a/packages/playground/src/components/list_table.vue +++ b/packages/playground/src/components/list_table.vue @@ -55,7 +55,7 @@