Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: reload grid on moveup / movedown events, too
  • Loading branch information
perexg committed Dec 10, 2015
1 parent 8577af3 commit 072bdb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/idnode.js
Expand Up @@ -1507,7 +1507,7 @@ tvheadend.idnode_grid = function(panel, conf)
var idnode = null;

var update = function(o) {
if ((o.create || 'delete' in o) && auto.getValue()) {
if ((o.create || o.moveup || o.movedown || 'delete' in o) && auto.getValue()) {
store.reload();
return;
}
Expand Down

0 comments on commit 072bdb6

Please sign in to comment.