diff --git a/packages/dashboard/src/explorer/components/DetailsV2.vue b/packages/dashboard/src/explorer/components/DetailsV2.vue
index e0dd31df87..a8904c53b4 100644
--- a/packages/dashboard/src/explorer/components/DetailsV2.vue
+++ b/packages/dashboard/src/explorer/components/DetailsV2.vue
@@ -36,8 +36,8 @@
-
-
+
+
@@ -85,6 +85,7 @@ export default class Details extends Vue {
loading = false;
grafanaUrl = "";
+ interfaces = undefined;
data: any = {};
@@ -117,6 +118,7 @@ export default class Details extends Vue {
return res;
}, data);
// update with the data from grid proxy
+ this.interfaces = data.node.interfaces;
if (this.nodeId) {
this.data.node = await fetch(`${window.configs.APP_GRIDPROXY_URL}/nodes/${this.nodeId}`).then(res =>
res.json(),