Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
afourmy committed Nov 7, 2019
1 parent b5dc207 commit 8231241
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions eNMS/static/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@ $(function() {
});

$.each(defaultProperties, function(type) {
$(`#${type}-properties`).selectpicker().on("change", function() {
call(`/counters/${this.value}/${type}`, function(objects) {
drawDiagrams(diagrams[type], parseData(objects));
$(`#${type}-properties`)
.selectpicker()
.on("change", function() {
call(`/counters/${this.value}/${type}`, function(objects) {
drawDiagrams(diagrams[type], parseData(objects));
});
});
});
});
});

0 comments on commit 8231241

Please sign in to comment.