Skip to content

Commit

Permalink
feat: try to add monitor link in job page (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish committed Jul 23, 2024
1 parent 9795f8a commit ddd0116
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/pages/jobs/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
<br/>
</div>
Status: {{ job.status }}
Monitor: <a href="/monitor/{{ job.built_by_worker_hostname }}"></a>
<br/>
Monitor: <a :href="'/monitor/' + job.built_by_worker_hostname"></a>
<br/>
<div v-if="job.assigned_worker_id !== null && job.assigned_worker_id !== undefined">
Running on
<router-link :to="{ path: `/workers/${job.assigned_worker_id}` }">
Expand Down

0 comments on commit ddd0116

Please sign in to comment.