Skip to content

Commit

Permalink
Show noarch packages in list of errata packages (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
javihernandez authored Oct 24, 2024
1 parent e90b0f2 commit b258059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ErrataInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
(platform) => platform.value == advisory.platform_id
).arch_list
advisory.packages.forEach((pack) => {
if (arch_list.includes(pack.arch)) {
if (arch_list.includes(pack.arch) || pack.arch == 'noarch') {
packages[pack.source_srpm]
? packages[pack.source_srpm].push(pack)
: (packages[pack.source_srpm] = [pack])
Expand Down

0 comments on commit b258059

Please sign in to comment.