Skip to content

Commit

Permalink
fix: check array length for eventtype (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
pghorpade authored May 9, 2023
1 parent 31e065b commit 6c2e01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/visit/events-exhibitions/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export default {
: obj.workshopOrEventSeriesType ===
"help/services-resources"
? "Workshop Series"
: obj.eventType != null
: obj.eventType != null && obj.eventType.length > 0
? obj.eventType[0].title
: "Event",
title: obj.title,
Expand Down

6 comments on commit 6c2e01c

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://www.library.ucla.edu as production
πŸš€ Deployed on https://645aa9a8c3f3812b9da4a164--uclalibrary.netlify.app

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://www.library.ucla.edu as production
πŸš€ Deployed on https://645aaa1e9bb521321996aacf--uclalibrary.netlify.app

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://www.library.ucla.edu as production
πŸš€ Deployed on https://645b52b72083c313bf5a3c6e--uclalibrary.netlify.app

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://www.library.ucla.edu as production
πŸš€ Deployed on https://645bfb577c802313db0a5335--uclalibrary.netlify.app

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸŽ‰ Published on https://www.library.ucla.edu as production
πŸš€ Deployed on https://645ca4195dc1786df947e95b--uclalibrary.netlify.app

Please sign in to comment.