Skip to content

Commit

Permalink
fix(appreg): add optional chaining to product.name (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateslo authored Jul 6, 2023
1 parent b815e8a commit e409f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ViewSpecRegistrationModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export default defineComponent({
return {
default: {
title: defaultModal.title(props.product.name, props.version?.name),
title: defaultModal.title(props.product?.name, props.version?.name),
buttonText: defaultModal.buttonText
},
success: {
Expand Down

0 comments on commit e409f82

Please sign in to comment.