We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efb79c commit 383fd0eCopy full SHA for 383fd0e
src/stores/partners.js
@@ -128,8 +128,9 @@ export const usePartnerStore = defineStore('partner', {
128
129
// The displayed name is based on the assigner.
130
131
- return this.uuid2LongNameMap[assignerUUID]
132
- || (assignerNameLower === this.cveProgramShortName)
+ return this.uuid2LongNameMap[assignerUUID] !== undefined ?
+ this.uuid2LongNameMap[assignerUUID]
133
+ : (assignerNameLower === this.cveProgramShortName)
134
? 'CVE Program' : this.short2FullNameMap.get(assignerNameLower)
135
|| this.short2DisplayName(assignerName);
136
},
0 commit comments