Show IPv6 address separately

This commit is contained in:
Girish Ramakrishnan
2022-02-15 11:46:10 -08:00
parent d51d81cdfa
commit 1c32495f22
2 changed files with 12 additions and 1 deletions

View File

@@ -144,6 +144,7 @@ angular.module('Application').controller('NetworkController', ['$scope', '$locat
$scope.sysinfo.provider = result.provider;
$scope.sysinfo.ipv4 = result.ipv4 || '';
$scope.sysinfo.ipv6 = result.ipv6 || '';
$scope.sysinfo.ifname = result.ifname || '';
Client.getServerIp(function (error, result) {