diff --git a/ui/src/components/view/ListView.vue b/ui/src/components/view/ListView.vue
index 341bdffc918..5a779da182b 100644
--- a/ui/src/components/view/ListView.vue
+++ b/ui/src/components/view/ListView.vue
@@ -242,7 +242,16 @@
- {{ text }}
+
+
+
+ {{ record.vpcname || record.vpcid }}
+
+
+
+
+ {{ text }}
+
{{ text }}
diff --git a/ui/src/config/section/infra/routers.js b/ui/src/config/section/infra/routers.js
index 9e45cb73246..76b1f4eba45 100644
--- a/ui/src/config/section/infra/routers.js
+++ b/ui/src/config/section/infra/routers.js
@@ -26,7 +26,7 @@ export default {
permission: ['listRouters'],
params: { projectid: '-1' },
columns: () => {
- var columns = ['name', 'state', 'publicip', 'guestnetworkname', 'vpcname', 'redundantstate', 'softwareversion', 'hostname', 'account', 'zonename', 'requiresupgrade']
+ var columns = ['name', 'state', 'publicip', { field: 'guestnetworkname', customTitle: 'network' }, 'redundantstate', 'softwareversion', 'hostname', 'account', 'zonename', 'requiresupgrade']
columns.splice(6, 0, { field: 'version', customTitle: 'templateversion' })
return columns
},