John Cowen 72d9d0a5ec ui: Remove unused helpers or swap for helpers in ember-string-fns (#9294)
* ui: Remove unused helpers or swap for helpers in ember-string-fns

* starts-with > string-starts-with
2020-11-30 17:20:19 +00:00

33 lines
726 B
Handlebars

<div id="meta" class="tab-section">
<div role="tabpanel">
<section class="tags">
<h3>Tags</h3>
{{#if (gt item.Tags.length 0) }}
<TagList @item={{item}} />
{{else}}
<EmptyState>
<BlockSlot @name="body">
<p>
There are no tags.
</p>
</BlockSlot>
</EmptyState>
{{/if}}
</section>
<section class="metadata">
<h3>Meta</h3>
{{#if item.Meta}}
<Consul::Metadata::List @items={{entries item.Meta}} />
{{else}}
<EmptyState>
<BlockSlot @name="body">
<p>
This instance has no metadata.
</p>
</BlockSlot>
</EmptyState>
{{/if}}
</section>
</div>
</div>