Fix custom license erroring with spaces (#905)

This commit is contained in:
Prospector 2023-01-11 13:10:59 -08:00 committed by GitHub
parent bb80dcb4e4
commit c67bc33c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,8 +193,8 @@ export default {
id += this.license.short
if (this.license.requiresOnlyOrLater)
id += this.allowOrLater ? '-or-later' : '-only'
if (this.nonSpdxLicense && this.license.short === 'Custom')
id.replaceAll(' ', '-')
if (this.nonSpdxLicense && this.license.friendly === 'Custom')
id = id.replaceAll(' ', '-')
return id
},
defaultLicenses() {