Skip to content

Commit

Permalink
Show URL for all spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 28, 2024
1 parent a5048f1 commit 39d2356
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions assets/vue/ReportMetadata.vue
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@
<th class="fit text-start align-top noleftpad">Group:</th>
<td>{{ file.group }}</td>
</tr>
<tr v-if="file.url !== null">
<th class="fit text-start align-top noleftpad">URL:</th>
<td>{{ file.url }}</td>
</tr>
<tr v-if="file.sources !== null">
<th class="fit text-start align-top noleftpad">Sources:</th>
<td>{{ file.sources }}</td>
Expand Down
1 change: 1 addition & 0 deletions lib/Cavil/Controller/Reviewer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ sub meta ($self) {
licenses => [uniq @{$sub->{licenses} // []}],
sources => [uniq @{$sub->{sources} // []}],
summary => $sub->{summary},
url => $sub->{url},
version => $sub->{version}
};
push @package_files, $entry;
Expand Down

0 comments on commit 39d2356

Please sign in to comment.