From c4f1e215eecd602a9c5dd1b70102694b24450b41 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Fri, 13 Sep 2013 16:52:22 +0100 Subject: [PATCH] webui: fix issue that caused UUIDs (not strings) to be displayed on update --- src/webui/static/app/idnode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/static/app/idnode.js b/src/webui/static/app/idnode.js index 9120235e..fabfa234 100644 --- a/src/webui/static/app/idnode.js +++ b/src/webui/static/app/idnode.js @@ -501,7 +501,7 @@ tvheadend.idnode_grid = function(panel, conf) /* Event handlers */ store.on('update', function(s, r, o){ - d = (s.getModifiedRecords().length == 0); + var d = (s.getModifiedRecords().length == 0); undoBtn.setDisabled(d); saveBtn.setDisabled(d); });