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 | 08564ab18c8ebf5e6613aac8a0b7f08d7e0b9fa3 (patch) | |
tree | e79df74994b526a55ca5feedaf9048973aaaaf7e | |
parent | de2031ad28b3556a65d19151be3a8b459b151c65 (diff) | |
parent | b17e3dac5952ef7519c711bf23b5f54adb247297 (diff) |
Merge "Fix Multiple Select Filter Widget"
-rw-r--r-- | dashboard/src/templates/dashboard/multiple_select_filter_widget.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html b/dashboard/src/templates/dashboard/multiple_select_filter_widget.html index 31b8f33..d1929ef 100644 --- a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html +++ b/dashboard/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; } } |