Skip to content

Commit

Permalink
conferences fall back to institution if no room
Browse files Browse the repository at this point in the history
  • Loading branch information
c2d13p authored Jun 4, 2024
1 parent 9652890 commit 84cceaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/eventsAndVisitorsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function renderEvents(events) {
}


let venue = `<span class="badge badge-sm badge-secondary smaller">${venue_icon} ${event.conferenceRoom?.name}</span>`
let venue = `<span class="badge badge-sm badge-secondary smaller">${venue_icon} ${event.conferenceRoom ? event.conferenceRoom.name : event.institution?.name}</span>`

var border_override = "";
if (i == 0) {
Expand Down

0 comments on commit 84cceaf

Please sign in to comment.