Skip to content

Commit

Permalink
Show HCL variable input on job submission. (#24622)
Browse files Browse the repository at this point in the history
* Show HCL variable input on job submission.

* Add changelog entry

(authored by @sevensolutions)
  • Loading branch information
sevensolutions authored Dec 18, 2024
1 parent fe821b4 commit 04e930b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/24622.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: Added possibility to supply HCL variable values on job submission
```
6 changes: 5 additions & 1 deletion ui/app/templates/components/job-editor/edit.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@
}}
></div>
</div>
{{#if (eq @data.view "job-spec")}}
{{#if (or (eq @data.view "job-spec") @data.job.isNew)}}
<div class="boxed-section" style="margin-top: 10px">
<div class="boxed-section-head">
{{#if @data.job.isNew}}
HCL Variable Values
{{else}}
Edit HCL Variable Values
{{/if}}
</div>
<div class="boxed-section-body is-full-bleed">
<div
Expand Down

0 comments on commit 04e930b

Please sign in to comment.