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.
26 lines
1,010 B
Handlebars
26 lines
1,010 B
Handlebars
<JobPage::Parts::Body @job={{job}}>
|
|
<JobPage::Parts::Error @errorMessage={{errorMessage}} @onDismiss={{action "clearErrorMessage"}} />
|
|
|
|
<JobPage::Parts::Title @job={{job}} @handleError={{action "handleError"}}>
|
|
<span class="tag is-hollow">Parameterized</span>
|
|
</JobPage::Parts::Title>
|
|
|
|
<div class="boxed-section job-stats">
|
|
<div class="boxed-section-body">
|
|
<span data-test-job-stat="version"><strong>Version:</strong> {{job.version}} | </span>
|
|
<span data-test-job-stat="priority"><strong>Priority:</strong> {{job.priority}} </span>
|
|
{{#if (and job.namespace system.shouldShowNamespaces)}}
|
|
<span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{job.namespace.name}}</span>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
|
|
<JobPage::Parts::Summary @job={{job}} />
|
|
<JobPage::Parts::Children
|
|
@job={{job}}
|
|
@sortProperty={{sortProperty}}
|
|
@sortDescending={{sortDescending}}
|
|
@currentPage={{currentPage}}
|
|
@gotoJob={{gotoJob}} />
|
|
</JobPage::Parts::Body>
|