From 0c2830b9a52bd7e1da4ff84d3d13402a31e62f19 Mon Sep 17 00:00:00 2001 From: EinMByte Date: Fri, 18 Sep 2015 23:12:08 +0200 Subject: [PATCH] Fix webui tunnel status column. --- webui/tunnels.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/tunnels.html b/webui/tunnels.html index 0981116f..72d7c53c 100644 --- a/webui/tunnels.html +++ b/webui/tunnels.html @@ -22,7 +22,7 @@ function updateNetDbInfo(result, session) { var row = table.insertRow(table.rows.length); row.insertCell(0).appendChild(document.createTextNode(id)); - row.insertCell(1).appendChild(document.createTextNode(tunnel["status"] ? tunnel["status"] : "running")); + row.insertCell(1).appendChild(document.createTextNode(tunnel["state"] ? tunnel["state"] : "running")); row.insertCell(2).appendChild(document.createTextNode(tunnel["layout"])); } }