2020-07-09 20:19:07 +00:00
|
|
|
{{#each-in this.attributes as |key value|}}
|
2017-09-19 14:47:10 +00:00
|
|
|
{{#if (is-object value)}}
|
2018-01-08 21:08:14 +00:00
|
|
|
<tr data-test-attributes-section>
|
|
|
|
<td data-test-heading class="is-subheading" colspan="2">
|
2020-07-09 20:19:07 +00:00
|
|
|
{{#if this.prefix}}<span class="is-faded" data-test-prefix>{{this.prefix}}.</span>{{/if}}{{key}}
|
2017-09-19 14:47:10 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2023-02-07 22:42:25 +00:00
|
|
|
<AttributesSection @prefix={{if this.prefix (concat this.prefix "." key) key}} @attributes={{value}}
|
|
|
|
@key={{key}} @value={{value}} @editable={{@editable}} @onKVSave={{@onKVSave}} />
|
2017-09-19 14:47:10 +00:00
|
|
|
{{else}}
|
2023-02-07 22:42:25 +00:00
|
|
|
<MetadataKv @prefix={{this.prefix}}
|
|
|
|
@key={{key}} @value={{value}} @editable={{@editable}} @onKVSave={{@onKVSave}} />
|
2017-09-19 14:47:10 +00:00
|
|
|
{{/if}}
|
|
|
|
{{/each-in}}
|