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-01-15 09:15:54 +00:00
|
|
|
{{#block-slot name='header'}}
|
2019-08-02 11:53:52 +00:00
|
|
|
<th>Key</th>
|
|
|
|
<th>Value</th>
|
|
|
|
{{/block-slot}}
|
2020-01-15 09:15:54 +00:00
|
|
|
{{#block-slot 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>
|
|
|
|
{{/block-slot}}
|
|
|
|
{{/tabular-collection}}
|
|
|
|
{{/with}}
|
|
|
|
{{else}}
|
|
|
|
<p>
|
|
|
|
This node has no meta data.
|
|
|
|
</p>
|
|
|
|
{{/if}}
|