mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
26 lines
558 B
Handlebars
26 lines
558 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
{{#each this.attributes.files as |file|}}
|
|
<MetadataKv
|
|
@prefix={{file.prefix}}
|
|
@key={{file.name}}
|
|
@value={{file.variable.value}}
|
|
@editable={{@editable}}
|
|
@onKVSave={{@onKVSave}}
|
|
@copyable={{@copyable}}
|
|
/>
|
|
{{/each}}
|
|
{{#each-in this.attributes.children as |key value|}}
|
|
<AttributesSection
|
|
@attributes={{value}}
|
|
@key={{key}}
|
|
@value={{value}}
|
|
@editable={{@editable}}
|
|
@onKVSave={{@onKVSave}}
|
|
@copyable={{@copyable}}
|
|
/>
|
|
{{/each-in}}
|