fix: update component props for glimmer syntax

This commit is contained in:
Jai Bhagat 2022-01-05 12:46:37 -05:00
parent cc8c9672e7
commit 9bb3e7a4f7
3 changed files with 4 additions and 7 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>