mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-08-24 16:05:07 +03:00
string format fix
This commit is contained in:
parent
951f0a1631
commit
9e5ed66dbb
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ ui.updateSelfInfo = function () {
|
||||||
return ui.getSelfInfo().then(function (info) {
|
return ui.getSelfInfo().then(function (info) {
|
||||||
$("ipv6").innerText = info.address;
|
$("ipv6").innerText = info.address;
|
||||||
$("subnet").innerText = info.subnet;
|
$("subnet").innerText = info.subnet;
|
||||||
$("coordinates").innerText = "".concat('[',replaceAll(info.coords, ',', ' '),']');
|
$("coordinates").innerText = replaceAll(JSON.stringify(info.coords), ',', ' ');
|
||||||
$("pub_key").innerText = info.key;
|
$("pub_key").innerText = info.key;
|
||||||
$("priv_key").innerText = info.private_key;
|
$("priv_key").innerText = info.private_key;
|
||||||
$("ipv6").innerText = info.address;
|
$("ipv6").innerText = info.address;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue