Skip to content

Commit b4511e3

Browse files
tsteenbesschuberth
authored andcommitted
fix(web-app-template): Fix concluded license in table view
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 <[email protected]>
1 parent 1eeb4ac commit b4511e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/reporters/web-app-template/src/components/ResultsTable.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const ResultsTable = ({ webAppOrtResult }) => {
5757
return webAppOrtResult.packages
5858
.map(
5959
(webAppPackage) => ({
60-
concludedLicenses: webAppPackage.concludedLicense || '',
60+
concludedLicense: webAppPackage.concludedLicense || '',
6161
declaredLicenses: webAppPackage.declaredLicenses,
6262
declaredLicensesText: Array.from(webAppPackage.declaredLicenses).join(', '),
6363
declaredLicensesMapped: webAppPackage.declaredLicensesMapped,

0 commit comments

Comments
 (0)