Skip to content
Snippets Groups Projects
Commit 0a777a4d authored by Reid Givens's avatar Reid Givens
Browse files

fixed the path in jobspec to execution links to match the rename from qa to executions

parent 8d54cd52
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,6 @@ export class ConfigurationService {
getSettings(): Promise<any> {
const promise = this.http.get(this.env.configUrl).toPromise().then((response: Configuration) => {
this.configuration = response;
console.log(response);
return response;
});
return promise;
......
<div class="row m-0 py-2 mb-1 border-bottom align-items-center">
<div class="col">
<a [routerLink]="['/qa']" [queryParams]="{pattern: execution.id, status: execution.status}">{{execution.name}}</a>
<a [routerLink]="['/executions']" [queryParams]="{pattern: execution.id, status: execution.status}">{{execution.name}}</a>
</div>
<div class="col-auto">
<h6><span class="badge" [ngClass]="getJobStatusClass(execution.status)">{{execution.status}}</span></h6>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment