fix: update component props for glimmer syntax
This commit is contained in:
parent
cc8c9672e7
commit
9bb3e7a4f7
|
@ -1,14 +1,11 @@
|
|||
<JobPage @job={{this.job}} as |jobPage|>
|
||||
<JobPage @job={{@job}} as |jobPage|>
|
||||
<jobPage.ui.Body>
|
||||
<jobPage.ui.Error />
|
||||
<jobPage.ui.Title />
|
||||
<jobPage.ui.StatsBox />
|
||||
<jobPage.ui.Summary />
|
||||
<jobPage.ui.PlacementFailures />
|
||||
<jobPage.ui.TaskGroups
|
||||
@sortProperty={{this.sortProperty}}
|
||||
@sortDescending={{this.sortDescending}}
|
||||
/>
|
||||
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
|
||||
<jobPage.ui.RecentAllocations />
|
||||
<jobPage.ui.Meta />
|
||||
</jobPage.ui.Body>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
@model={{@job.parent}}
|
||||
@query={{hash namespace=@job.parent.namespace.name}}
|
||||
>
|
||||
{{this.job.parent.name}}
|
||||
{{@job.parent.name}}
|
||||
</LinkTo>
|
||||
</span>
|
||||
</:before-namespace>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
@model={{@job.parent}}
|
||||
@query={{hash namespace=@job.parent.namespace.name}}
|
||||
>
|
||||
{{this.job.parent.name}}
|
||||
{{@job.parent.name}}
|
||||
</LinkTo>
|
||||
</span>
|
||||
</:before-namespace>
|
||||
|
|
Loading…
Reference in a new issue