2998deac50
This is mostly a direct application of the ember-angle-brackets-codemod. I manually restored newlines in multi-line component invocations, usually preserving file line length except for now-non-positional link-to @route. I needed to rename task to taskState in some cases to avoid Ember Concurrency naming conflicts.
13 lines
356 B
Handlebars
13 lines
356 B
Handlebars
{{#if job.hasPlacementFailures}}
|
|
<div class="boxed-section is-danger" data-test-placement-failures>
|
|
<div class="boxed-section-head">
|
|
Placement Failures
|
|
</div>
|
|
<div class="boxed-section-body">
|
|
{{#each job.taskGroups as |taskGroup|}}
|
|
<PlacementFailure @taskGroup={{taskGroup}} />
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|