Skip to content

Commit

Permalink
fix: treat 'additionalProperties' null the same as undefined rwth-aci…
Browse files Browse the repository at this point in the history
  • Loading branch information
fxjordan committed Jan 22, 2022
1 parent dc80cbc commit 0a66327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RequirementCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default defineComponent({
// get issue's additionalProperties Descriptors & Values
const additionalPropertiesValue = additionalProperties.value;
if(additionalPropertiesValue === undefined){
if(additionalPropertiesValue === undefined || additionalPropertiesValue === null){
var issueNumberValue = undefined;
var issueStatusValue = undefined;
var issueUrlValue = undefined;
Expand Down

0 comments on commit 0a66327

Please sign in to comment.