Skip to content
This repository has been archived by the owner on Nov 11, 2019. It is now read-only.

Commit

Permalink
staticanalysis/frontend: Fix source unknown in Check vue (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastien Abadie authored Apr 10, 2019
1 parent da13652 commit b311e39
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/staticanalysis/frontend/src/Check.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export default {
<tr>
<th>Task</th>
<th>Review</th>
<th>Bug</th>
<th>Path</th>
<th>Line</th>
<th>Message</th>
Expand All @@ -46,7 +47,10 @@ export default {
<a class="mono" :href="'https://tools.taskcluster.net/task-inspector/#' + issue.taskId" target="_blank">{{ issue.taskId }}</a>
</td>
<td>
<a :href="issue.revision.url" target="_blank" v-if="issue.revision.source == 'phabricator'">Phabricator {{ issue.revision.id }}</a>
<a :href="issue.revision.url" target="_blank">D{{ issue.revision.id }}</a>
</td>
<td>
<span v-if="issue.revision.bugzilla_id"><a :href="'https://bugzil.la/' + issue.revision.bugzilla_id" target="_blank">Bug {{ issue.revision.bugzilla_id }}</a></span>
<span v-else>Unknown</span>
</td>
<td class="mono">{{ issue.path }}</td>
Expand Down

0 comments on commit b311e39

Please sign in to comment.