From 163ec92059eec5cc009a5b5ec1e4733127a6cd6d Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 16 Jun 2014 17:44:41 +0200 Subject: [PATCH] webui (idnode.js): If some key is not preset, show the key itself --- src/webui/static/app/idnode.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/static/app/idnode.js b/src/webui/static/app/idnode.js index f6648609..12a76a00 100644 --- a/src/webui/static/app/idnode.js +++ b/src/webui/static/app/idnode.js @@ -175,6 +175,8 @@ tvheadend.IdNodeField = function(conf) var nv = st.getAt(r).get('val'); if (nv) t.push(nv); + } else { + t.push(d[i]); } } v = t.join(',');