webui: fix issue that caused UUIDs (not strings) to be displayed on update

This commit is contained in:
Adam Sutton 2013-09-13 16:52:22 +01:00
parent f02bfac363
commit c4f1e215ee

View file

@ -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);
});