Skip to content

Commit

Permalink
fix(web-app-template): Fix concluded license in table view
Browse files Browse the repository at this point in the history
This is a fix-up for 403d1bc where due to copy-paste mistake
the concluded license for a package is not shown in the table
view.

Closes #9980.

Signed-off-by: Thomas Steenbergen <opensource@steenbe.nl>
  • Loading branch information
tsteenbe authored and sschuberth committed Mar 2, 2025
1 parent 1eeb4ac commit b4511e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const ResultsTable = ({ webAppOrtResult }) => {
return webAppOrtResult.packages
.map(
(webAppPackage) => ({
concludedLicenses: webAppPackage.concludedLicense || '',
concludedLicense: webAppPackage.concludedLicense || '',
declaredLicenses: webAppPackage.declaredLicenses,
declaredLicensesText: Array.from(webAppPackage.declaredLicenses).join(', '),
declaredLicensesMapped: webAppPackage.declaredLicensesMapped,
Expand Down

0 comments on commit b4511e3

Please sign in to comment.