mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
47 lines
925 B
Handlebars
47 lines
925 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
~}}
|
|
|
|
<form class="metadata-editor">
|
|
<label>
|
|
<strong>Key</strong>
|
|
{{#if @constantKey}}
|
|
<span class="constant-key">{{@kv.key}}</span>
|
|
{{else}}
|
|
<Input
|
|
{{autofocus}}
|
|
id="new-meta-key"
|
|
@type="text"
|
|
@value={{@kv.key}}
|
|
class="input"
|
|
{{on "keyup" @onEdit}}
|
|
/>
|
|
{{/if}}
|
|
</label>
|
|
<label>
|
|
<strong>Value</strong>
|
|
{{#if @autofocusValue}}
|
|
<Input
|
|
data-test-metadata-editor-value
|
|
@type="text"
|
|
@value={{@kv.value}}
|
|
class="input"
|
|
{{autofocus}}
|
|
{{on "keyup" @onEdit}}
|
|
/>
|
|
{{else}}
|
|
<Input
|
|
data-test-metadata-editor-value
|
|
@type="text"
|
|
@value={{@kv.value}}
|
|
class="input"
|
|
{{on "keyup" @onEdit}}
|
|
/>
|
|
{{/if}}
|
|
</label>
|
|
<footer>
|
|
{{yield}}
|
|
</footer>
|
|
</form>
|