ui: add missing pipe separator in parameterized and periodic jobs (#11020)
This commit is contained in:
parent
ec08bd6ac7
commit
c1d1906628
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:improvement
|
||||||
|
ui: Add header separator between a child job priority and its parent
|
||||||
|
```
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="boxed-section job-stats">
|
<div class="boxed-section job-stats">
|
||||||
<div class="boxed-section-body">
|
<div class="boxed-section-body">
|
||||||
<span data-test-job-stat="type"><strong>Type:</strong> {{this.job.type}} | </span>
|
<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">
|
<span data-test-job-stat="parent">
|
||||||
<strong>Parent:</strong>
|
<strong>Parent:</strong>
|
||||||
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash jobNamespace=this.job.parent.namespace.name}}>
|
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash jobNamespace=this.job.parent.namespace.name}}>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="boxed-section job-stats">
|
<div class="boxed-section job-stats">
|
||||||
<div class="boxed-section-body">
|
<div class="boxed-section-body">
|
||||||
<span data-test-job-stat="type"><strong>Type:</strong> {{this.job.type}} | </span>
|
<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">
|
<span data-test-job-stat="parent">
|
||||||
<strong>Parent:</strong>
|
<strong>Parent:</strong>
|
||||||
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash namespace=this.job.parent.namespace.name}}>
|
<LinkTo @route="jobs.job" @model={{this.job.parent}} @query={{hash namespace=this.job.parent.namespace.name}}>
|
||||||
|
|
Loading…
Reference in New Issue