From 1cd1dcd3a26dba4d2ba0dcd2a250c1e63e405777 Mon Sep 17 00:00:00 2001 From: Eunmin Kim Date: Thu, 27 Apr 2017 08:47:08 +0900 Subject: [PATCH] Fixed incorrect color of circuit status in dashboard --- .../components/hystrixCommand/templates/hystrixCircuit.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") %> <% } %>