Skip to content
Snippets Groups Projects

WS-1594: Added ability to open requests in a new tab from the active requests page

Merged Nathan Bockisch requested to merge ws-1594-open-requests-in-new-tab into main
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -135,14 +135,15 @@
<tbody>
<tr *ngFor="let request of (sortedActiveRequests$ | async) | slice:pageStart:pageStop; trackBy: trackActiveRequests">
<td>
<button
<a
routerLink="/workspaces/request-status/{{ request.id }}"
type="button"
class="btn btn-light"
(click)="capabilityRequestService.redirectToRequestStatusPage(request.id, false)"
>
<strong class="pr-2">{{ request.id }}</strong>
<app-status-badge [capabilityRequest]="request"></app-status-badge>
</button>
</a>
</td>
<td>{{ getExecutionStatusName(request) }}</td>
<td>{{ getMetadata(request).sdm_id }}</td>
Loading