diff --git a/web/src/main/webapp/features/serverMap/server-map.directive.js b/web/src/main/webapp/features/serverMap/server-map.directive.js index 8fb5e49e7..cfd452588 100644 --- a/web/src/main/webapp/features/serverMap/server-map.directive.js +++ b/web/src/main/webapp/features/serverMap/server-map.directive.js @@ -819,7 +819,9 @@ }); } else { $toolbar.animate({ top: -1 }, "fast", function() { - $toolbar.find(".search-result").show(); + if ( scope.searchNodeList.length > 0 ) { + $toolbar.find(".search-result").show(); + } $toolbarHandleSpan.addClass("glyphicon-chevron-up").removeClass("glyphicon-chevron-down"); }); }