diff options
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/uci.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/uci.js b/modules/luci-base/htdocs/luci-static/resources/uci.js index f57af6ae76..17f11eecb8 100644 --- a/modules/luci-base/htdocs/luci-static/resources/uci.js +++ b/modules/luci-base/htdocs/luci-static/resources/uci.js @@ -433,6 +433,7 @@ return L.Class.extend({ n = this.state.creates, c = this.state.changes, d = this.state.deletes, + r = this.state.reorder, self = this, snew = [ ], pkgs = { }, @@ -480,6 +481,10 @@ return L.Class.extend({ pkgs[conf] = true; } + if (r) + for (var conf in r) + pkgs[conf] = true; + return Promise.all(tasks).then(function(responses) { /* array "snew" holds references to the created uci sections, |