webui: fix issue that caused UUIDs (not strings) to be displayed on update
This commit is contained in:
parent
f02bfac363
commit
c4f1e215ee
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue