diff --git a/hystrix-dashboard/src/main/webapp/index.html b/hystrix-dashboard/src/main/webapp/index.html index 8a1531e73..dafafb61a 100644 --- a/hystrix-dashboard/src/main/webapp/index.html +++ b/hystrix-dashboard/src/main/webapp/index.html @@ -26,6 +26,13 @@ $('#message').html("The 'stream' value is required."); } } + $(document).ready(function() { + $('#stream').keypress(function(e) { + if(e.which == 13) { + sendToMonitor(); + } + }); + });
@@ -57,4 +64,4 @@