Skip to content

Commit

Permalink
Merge pull request #457 from AuScope/AUS-4283
Browse files Browse the repository at this point in the history
AUS-4283 Fixed analytical JobType issue.
  • Loading branch information
chrisvpeters authored Nov 21, 2024
2 parents 96b6e07 + 625e778 commit 274d156
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ <h4 class="card-title">Borehole Analytics</h4>
<th>Published</th>
<th>Submitted</th>
<th>Status</th>
<th>Type</th>
<th style="width:1%">ACTIONS</th>
</tr>
</thead>
Expand All @@ -215,12 +216,13 @@ <h4 class="card-title">Borehole Analytics</h4>
<span class="custom-control-indicator"></span>
</label>
</td>
<td>{{status.timeStamp}}</td>
<td>{{status.jmstimestamp}}</td>
<td>{{status.status}}</td>
<td>{{status.requestType}}</td>
<td *ngIf="status.status==='Success'" class="btn-col" style="white-space: nowrap">
<a class="btn btn-purple btn-xs" title="View this job on the map." (click) = "viewOnMap(status.jobid)"><i class="ti-map-alt"></i></a>
<a class="btn btn-light btn-xs" title="Download this job result." (click)="nvclDownload(status.jobid)"><i class="ti-download"></i></a>
<a class="btn btn-light btn-xs" title="Download the TSGMod data for this job. It is only for non-existing scalars, otherwise, the zip file will be empty." (click)="nvclDownloadData(status.jobid)"><i class="ti-zip"></i></a>
<a class="btn btn-light btn-xs" title="Download the TSGMod data." (click)="nvclDownloadData(status.jobid)" [style.visibility]="status.requestType !=='ANALYTICAL' ? 'visible' : 'hidden'"><i class="ti-zip"></i></a>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 274d156

Please sign in to comment.