diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-18 16:19:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-18 16:19:32 +0000 |
commit | 184dd8ad3a2e2b58f7d25ac6fa1e7ac80c1c5511 (patch) | |
tree | a1fb878c370d884b88478a5590a67922cd77f972 | |
parent | 4f02f83fe61740a439694b8d37bf4962ffaa0e01 (diff) | |
parent | b1022bf4735b93718c916dcbf600ef11b3b64111 (diff) |
Merge "Fix Multiple Select Filter Widget"
-rw-r--r-- | src/templates/dashboard/multiple_select_filter_widget.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/templates/dashboard/multiple_select_filter_widget.html b/src/templates/dashboard/multiple_select_filter_widget.html index 31b8f33..d1929ef 100644 --- a/src/templates/dashboard/multiple_select_filter_widget.html +++ b/src/templates/dashboard/multiple_select_filter_widget.html @@ -376,6 +376,7 @@ function updateResult(nodeId){ var node = document.getElementById(nodeId); var value = {} value[nodeId] = node.parentNode.getElementsByTagName("input")[0].value; + result[node.parentNode.parentNode.id] = {}; result[node.parentNode.parentNode.id][nodeId] = value; } } |