2019-08-02 11:53:52 +00:00
|
|
|
{{#if item.Meta}}
|
|
|
|
{{#with (object-entries item.Meta) as |meta|}}
|
2020-03-06 14:10:34 +00:00
|
|
|
<TabularCollection
|
|
|
|
data-test-metadata
|
|
|
|
@items={{meta}} as |item index|
|
|
|
|
>
|
2020-02-19 19:26:38 +00:00
|
|
|
<BlockSlot @name="header">
|
2019-08-02 11:53:52 +00:00
|
|
|
<th>Key</th>
|
|
|
|
<th>Value</th>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="row">
|
2019-08-02 11:53:52 +00:00
|
|
|
<td>
|
|
|
|
<span>
|
|
|
|
{{object-at 0 item}}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span>{{object-at 1 item}}</span>
|
|
|
|
</td>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
2020-03-06 14:10:34 +00:00
|
|
|
</TabularCollection>
|
2019-08-02 11:53:52 +00:00
|
|
|
{{/with}}
|
|
|
|
{{else}}
|
|
|
|
<p>
|
|
|
|
This instance has no meta data.
|
|
|
|
</p>
|
|
|
|
{{/if}}
|