e9e52e0dfe
This doesn’t include Ember Data, as we are still back on 3.12. Most changes are deprecation updates, linting fixes, and dependencies. It can be read commit-by-commit, though many of them are mechanical and skimmable. For the new linting exclusions, I’ve added them to the Tech Debt list. The decrease in test count is because linting is no longer included in ember test. There’s a new deprecation warning in the logs that can be fixed by updating Ember Power Select but when I tried that it caused it to render incorrectly, so I decided to ignore it for now and address it separately.
23 lines
743 B
Handlebars
23 lines
743 B
Handlebars
{{page-title "Job " this.job.name " definition"}}
|
|
<JobSubnav @job={{this.job}} />
|
|
<section class="section">
|
|
{{#unless this.isEditing}}
|
|
<div class="boxed-section">
|
|
<div class="boxed-section-head">
|
|
Job Definition
|
|
<button class="button is-light is-compact pull-right" type="button" onclick={{action this.edit}} data-test-edit-job>Edit</button>
|
|
</div>
|
|
<div class="boxed-section-body is-full-bleed">
|
|
<JsonViewer data-test-definition-view @json={{this.definition}} />
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<JobEditor
|
|
@job={{this.job}}
|
|
@cancelable={{true}}
|
|
@context="edit"
|
|
@onCancel={{action this.onCancel}}
|
|
@onSubmit={{action this.onSubmit}} />
|
|
{{/unless}}
|
|
</section>
|