Skip to content

Commit

Permalink
Link to package as well
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 22, 2024
1 parent b165cfb commit 018e0c7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions assets/vue/IgnoredMatches.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<a :href="match.snippetUrl">{{ match.hash }}</a>
</td>
<td v-else>{{ match.hash }}</td>
<td>{{ match.packname }}</td>
<td v-html="match.package"></td>
<td>{{ match.created }}</td>
<td>{{ match.contributor_login }}</td>
<td>{{ match.owner_login }}</td>
Expand Down Expand Up @@ -96,6 +96,7 @@
<script>
import PaginationLinks from './components/PaginationLinks.vue';
import ShownEntries from './components/ShownEntries.vue';
import {packageLink} from './helpers/links.js';
import {genParamWatchers, getParams, setParam} from './helpers/params.js';
import Refresh from './mixins/refresh.js';
import UserAgent from '@mojojs/user-agent';
Expand Down Expand Up @@ -153,7 +154,7 @@ export default {
matches.push({
id: match.id,
hash: match.hash,
packname: match.packname,
package: packageLink({name: match.packname}),
created: moment(match.created_epoch * 1000).fromNow(),
contributor_login: match.contributor_login,
owner_login: match.owner_login,
Expand Down

0 comments on commit 018e0c7

Please sign in to comment.