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.
11 lines
345 B
Handlebars
11 lines
345 B
Handlebars
{{#each annotatedVersions key="version.id" as |record|}}
|
|
{{#if record.meta.showDate}}
|
|
<li data-test-version-time class="timeline-note">
|
|
{{format-date record.version.submitTime}}
|
|
</li>
|
|
{{/if}}
|
|
<li data-test-version class="timeline-object">
|
|
<JobVersion @version={{record.version}} @verbose={{verbose}} />
|
|
</li>
|
|
{{/each}}
|