Skip to content

Commit

Permalink
ui: add missing pipe separator in parameterized and periodic jobs (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
lgfa29 authored and Mahmood Ali committed Aug 26, 2021
1 parent 7fe49c0 commit 95552b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/11020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: Add header separator between a child job priority and its parent
```
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="boxed-section job-stats">
<div class="boxed-section-body">
<span data-test-job-stat="type"><strong>Type:</strong> {{this.job.type}} | </span>
<span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span>
<span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} |</span>
<span data-test-job-stat="parent">
<strong>Parent:</strong>
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash jobNamespace=this.job.parent.namespace.name}}>
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 @@ -6,7 +6,7 @@
<div class="boxed-section job-stats">
<div class="boxed-section-body">
<span data-test-job-stat="type"><strong>Type:</strong> {{this.job.type}} | </span>
<span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span>
<span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} |</span>
<span data-test-job-stat="parent">
<strong>Parent:</strong>
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash namespace=this.job.parent.namespace.name}}>
Expand Down

0 comments on commit 95552b5

Please sign in to comment.