Skip to content

Commit

Permalink
Non-service job types get allocation params passed
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Sep 20, 2022
1 parent 119456d commit 3aaec14
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ui/app/templates/components/job-page/batch.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<jobPage.ui.Summary />
<jobPage.ui.PlacementFailures />
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
<jobPage.ui.RecentAllocations />
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
<jobPage.ui.Meta />
</jobPage.ui.Body>
</JobPage>
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<jobPage.ui.Summary @forceCollapsed={{@job.hasClientStatus}} />
<jobPage.ui.PlacementFailures />
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
<jobPage.ui.RecentAllocations />
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
<div class="boxed-section">
{{#if @job.meta}}
<jobPage.ui.Meta />
Expand Down
2 changes: 1 addition & 1 deletion ui/app/templates/components/job-page/periodic-child.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<jobPage.ui.Summary @forceCollapsed={{@job.hasClientStatus}} />
<jobPage.ui.PlacementFailures />
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
<jobPage.ui.RecentAllocations />
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
<jobPage.ui.Meta />
</jobPage.ui.Body>
</JobPage>
2 changes: 1 addition & 1 deletion ui/app/templates/components/job-page/sysbatch.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<jobPage.ui.Summary @forceCollapsed="true" />
<jobPage.ui.PlacementFailures />
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
<jobPage.ui.RecentAllocations />
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
<jobPage.ui.Meta />
</jobPage.ui.Body>
</JobPage>
2 changes: 1 addition & 1 deletion ui/app/templates/components/job-page/system.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<jobPage.ui.Summary @forceCollapsed="true" />
<jobPage.ui.PlacementFailures />
<jobPage.ui.TaskGroups @sortProperty={{@sortProperty}} @sortDescending={{@sortDescending}} />
<jobPage.ui.RecentAllocations />
<jobPage.ui.RecentAllocations @activeTask={{@activeTask}} @setActiveTaskQueryParam={{@setActiveTaskQueryParam}} />
<jobPage.ui.Meta />
</jobPage.ui.Body>
</JobPage>

0 comments on commit 3aaec14

Please sign in to comment.