Browse Source

ui: Reorder items in the Proxy Info tab (#8061)

pull/8077/head
Kenia 5 years ago committed by GitHub
parent
commit
328874ad4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      ui-v2/app/templates/dc/services/instance/proxy.hbs

12
ui-v2/app/templates/dc/services/instance/proxy.hbs

@ -1,11 +1,5 @@
<div class="tab-section">
<div role="tabpanel">
{{#if (or (gt proxy.ServiceChecks.length 0) (gt proxy.NodeChecks.length 0))}}
<section>
<h3>Proxy health checks</h3>
<HealthcheckList data-test-proxy-checks @items={{append proxy.ServiceChecks proxy.NodeChecks}} />
</section>
{{/if}}
{{#if (gt proxy.Proxy.Upstreams.length 0)}}
<section class="proxy-upstreams">
<h3> Upstreams</h3>
@ -103,5 +97,11 @@
</ul>
</section>
{{/if}}
{{#if (or (gt proxy.ServiceChecks.length 0) (gt proxy.NodeChecks.length 0))}}
<section>
<h3>Proxy health</h3>
<HealthcheckList data-test-proxy-checks @items={{append proxy.ServiceChecks proxy.NodeChecks}} />
</section>
{{/if}}
</div>
</div>
Loading…
Cancel
Save