2019-08-02 11:53:52 +00:00
|
|
|
{{#if item.Meta}}
|
|
|
|
{{#with (object-entries item.Meta) as |meta|}}
|
|
|
|
{{#tabular-collection
|
|
|
|
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>
|
2019-08-02 11:53:52 +00:00
|
|
|
{{/tabular-collection}}
|
|
|
|
{{/with}}
|
|
|
|
{{else}}
|
|
|
|
<p>
|
|
|
|
This node has no meta data.
|
|
|
|
</p>
|
|
|
|
{{/if}}
|