From 78f34347ef16fcbb0a741af02bab198c6d0f8449 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Fri, 7 Jun 2019 10:30:52 -0400 Subject: Fix multiple select regression from 67915 Change-Id: Iff9574f6a7a95d52785026194779ad4fbd71e003 Signed-off-by: Sawyer Bergeron --- dashboard/src/templates/dashboard/multiple_select_filter_widget.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html b/dashboard/src/templates/dashboard/multiple_select_filter_widget.html index d794b73..536fdcc 100644 --- a/dashboard/src/templates/dashboard/multiple_select_filter_widget.html +++ b/dashboard/src/templates/dashboard/multiple_select_filter_widget.html @@ -421,7 +421,7 @@ function updateResult(nodeId){ } function updateObjectResult(parentElem){ - node_type = document.getElementById(parentElem.class).parentNode.parentNode.id; + node_type = document.getElementById(parentElem.class).parentNode.id; input = {}; inputs = parentElem.getElementsByTagName("input"); for(var i in inputs){ -- cgit 1.2.3-korg