diff --git a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html
index f9b3b83e5..7209f6f08 100644
--- a/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html
+++ b/hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html
@@ -44,7 +44,7 @@
/* We have some circuits that are open */
%>
<% if(typeof isCircuitBreakerOpen === 'object' ) { %>
- Circuit Open <%= isCircuitBreakerOpen.true %> Closed <%= isCircuitBreakerOpen.false %>
+ Circuit Open <%= isCircuitBreakerOpen.true %> Closed <%= isCircuitBreakerOpen.false %>
<% } else { %>
Circuit <%= isCircuitBreakerOpen.toString().replace("true", "Open").replace("false", "Closed") %>
<% } %>