Skip to content

Commit 1cd1dcd

Browse files
committed
Fixed incorrect color of circuit status in dashboard
1 parent cf3f7e4 commit 1cd1dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: hystrix-dashboard/src/main/webapp/components/hystrixCommand/templates/hystrixCircuit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
/* We have some circuits that are open */
4545
%>
4646
<% if(typeof isCircuitBreakerOpen === 'object' ) { %>
47-
Circuit <font color="orange">Open <%= isCircuitBreakerOpen.true %></font> <font color="green">Closed <%= isCircuitBreakerOpen.false %></font>
47+
Circuit <font color="red">Open <%= isCircuitBreakerOpen.true %></font> <font color="green">Closed <%= isCircuitBreakerOpen.false %></font>
4848
<% } else { %>
4949
Circuit <font color="orange"><%= isCircuitBreakerOpen.toString().replace("true", "Open").replace("false", "Closed") %></font>
5050
<% } %>

0 commit comments

Comments
 (0)