Skip to content

Commit

Permalink
gh-518 Add scope attribute to th elements
Browse files Browse the repository at this point in the history
  • Loading branch information
pjmonks committed Jul 22, 2022
1 parent 302ef72 commit 1ca0d89
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions src/app/userArea/async-job-detail/async-job-detail.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,36 +23,29 @@ <h4>
</h4>
<p>{{ job.jobName }}</p>
</div>
<!-- <div>
<p>{{ job.startedByUser }}</p>
<p>{{ job.dateTimeStarted | date: 'dd/MM/yyyy h:mm a' }}</p>
<p>{{ job.status | titlecase }}</p>
<p>{{ job.message }}</p>
<p>{{ job.location }}</p>
</div> -->
<table class="table table-bordered mdm--table-fixed">
<tbody>
<tr>
<th class="detailsRowHeader">Started by user</th>
<th class="detailsRowHeader" scope="row">Started by user</th>
<td>
{{ job.startedByUser }}
</td>
</tr>
<tr>
<th class="detailsRowHeader">Time started</th>
<th class="detailsRowHeader" scope="row">Time started</th>
<td>
{{ job.dateTimeStarted | date: 'dd/MM/yyyy h:mm a' }}
</td>
</tr>
<tr>
<th class="detailsRowHeader">Status</th>
<th class="detailsRowHeader" scope="row">Status</th>
<td>
<span class="{{ getStatusIconStyle(job.status) }}"></span>
{{ job.status | titlecase }}
</td>
</tr>
<tr>
<th class="detailsRowHeader">Location</th>
<th class="detailsRowHeader" scope="row">Location</th>
<td>
{{ job.location }}
</td>
Expand Down

0 comments on commit 1ca0d89

Please sign in to comment.