John Cowen 5dad95faf1 ui: Add <ConsulMetadataList /> and use it in 2 places (#7568)
We previoulsy had some pretty straightforward duplicated code for
rendering our metadata list for both Service Metadata and Node Metadata.

This moves this code into a component.
2020-05-12 17:14:21 +00:00

8 lines
145 B
Handlebars

{{#if item.Meta}}
<ConsulMetadataList @items={{object-entries item.Meta}} />
{{else}}
<p>
This instance has no meta data.
</p>
{{/if}}