Code Review
/
laas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
341b333
)
Dashboard.js bug fix
author
Parker Berberian
<pberberian@iol.unh.edu>
Tue, 25 Jun 2019 20:07:32 +0000
(16:07 -0400)
committer
Parker Berberian
<pberberian@iol.unh.edu>
Tue, 25 Jun 2019 20:07:32 +0000
(16:07 -0400)
A couple bugs slipped in from complicated merges.
Change-Id: I373b934b7b02e8af2f54997c918c7690e495c374
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
src/static/js/dashboard.js
patch
|
blob
|
history
diff --git
a/src/static/js/dashboard.js
b/src/static/js/dashboard.js
index
0ed61e8
..
bd43c77
100644
(file)
--- a/
src/static/js/dashboard.js
+++ b/
src/static/js/dashboard.js
@@
-90,7
+90,7
@@
class MultipleSelectFilterWidget {
}
for(let node of selected) {
this.select(node);
- this.markAndSweep(
selected[i]
);
+ this.markAndSweep(
node
);
}
}
}
@@
-732,7
+732,7
@@
class NetworkStep {
addNetwork(net_name) {
const ret = this.makeMxNetwork(net_name);
- this.makeSidebarNetwork(
...ret
);
+ this.makeSidebarNetwork(
net_name, ret.color, ret.element_id
);
}
updateHosts(removed) {