Files
nomad/ui/app/components/variable-form/job-template-editor.hbs
Phil Renaud f74623a506 [ui, compliance] Remove the newline after .hbs copyright headers (#16861)
* Remove the newline after .hbs copyright headers

* Trying with the whitespace control char
2023-04-14 13:08:13 -04:00

38 lines
672 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
~}}
{{did-insert this.establishKeyValues}}
<div>
<label>
<span>
Description
</span>
<Input
@type="text"
@value={{this.description}}
{{on "input" this.updateDescription}}
class="input value-input"
data-test-template-description
/>
</label>
</div>
<div>
<label>
<span>
Job Template
</span>
<div
data-test-template-json
{{code-mirror
theme="hashi"
mode="ruby"
autofocus=false
content=this.template
onUpdate=(action this.updateTemplate)
}}
></div>
</label>
</div>