2021-01-05 10:05:59 +00:00
|
|
|
<div class="tab-section">
|
2020-05-26 15:52:32 +00:00
|
|
|
<section class="tags">
|
|
|
|
<h3>Tags</h3>
|
|
|
|
{{#if (gt item.Tags.length 0) }}
|
|
|
|
<TagList @item={{item}} />
|
|
|
|
{{else}}
|
2020-07-08 13:34:57 +00:00
|
|
|
<EmptyState>
|
|
|
|
<BlockSlot @name="body">
|
|
|
|
<p>
|
|
|
|
There are no tags.
|
|
|
|
</p>
|
|
|
|
</BlockSlot>
|
|
|
|
</EmptyState>
|
2020-05-26 15:52:32 +00:00
|
|
|
{{/if}}
|
|
|
|
</section>
|
|
|
|
<section class="metadata">
|
|
|
|
<h3>Meta</h3>
|
|
|
|
{{#if item.Meta}}
|
2020-11-30 17:19:44 +00:00
|
|
|
<Consul::Metadata::List @items={{entries item.Meta}} />
|
2020-05-26 15:52:32 +00:00
|
|
|
{{else}}
|
2020-07-08 13:34:57 +00:00
|
|
|
<EmptyState>
|
|
|
|
<BlockSlot @name="body">
|
|
|
|
<p>
|
|
|
|
This instance has no metadata.
|
|
|
|
</p>
|
|
|
|
</BlockSlot>
|
|
|
|
</EmptyState>
|
2020-05-26 15:52:32 +00:00
|
|
|
{{/if}}
|
|
|
|
</section>
|
2020-04-08 09:56:36 +00:00
|
|
|
</div>
|