77 th.agenda-table-head-check ( v-if ='pickerModeActive' )
88 th.agenda-table-head-time Time
99 th.agenda-table-head-location ( colspan ='2' ) Location
10- th.agenda-table-head-event ( colspan ='2' ) {{ agendaStore .viewport < 990 ? '' : 'Event' }}
10+ th.agenda-table-head-event ( colspan ='2' ) {{ siteStore .viewport < 990 ? '' : 'Event' }}
1111 tbody
1212 tr.agenda-table-display-noresult (
1313 v-if ='!meetingEvents || meetingEvents.length < 1'
5858 span.badge {{item.location.short}}
5959 span {{item.location.name}}
6060 router-link.discreet (
61- :to ='`/meeting/` + agendaStore.meeting.number + `/floor-plan-neue ?room=` + xslugify(item.room)'
61+ :to ='`/meeting/` + agendaStore.meeting.number + `/floor-plan?room=` + xslugify(item.room)'
6262 :aria-label ='item.room'
6363 ) {{item.room}}
6464 span( v-else ) {{item.room}}
6565 //- CELL - GROUP --------------------------
6666 td.agenda-table-cell-group ( v-if ='item.type === `regular`' )
67- span.badge ( v-if ='agendaStore.areaIndicatorsShown && agendaStore .viewport > 1200' ) {{item.groupAcronym}}
67+ span.badge ( v-if ='agendaStore.areaIndicatorsShown && siteStore .viewport > 1200' ) {{item.groupAcronym}}
6868 a.discreet ( :href ='`/group/` + item.acronym + `/about/`' ) {{item.acronym}}
6969 //- CELL - NAME ---------------------------
7070 td.agenda-table-cell-name
105105 template( v-else )
106106 span.badge.is-cancelled ( v-if ='!isMobile && item.status === `canceled`' ) Cancelled
107107 span.badge.is-rescheduled ( v-else-if ='!isMobile && item.status === `resched`' ) Rescheduled
108- .agenda-table-cell-links-buttons ( v-else-if ='agendaStore .viewport < 1200 && item.links && item.links.length > 0' )
108+ .agenda-table-cell-links-buttons ( v-else-if ='siteStore .viewport < 1200 && item.links && item.links.length > 0' )
109109 n-dropdown(
110110 v-if ='!agendaStore.colorPickerVisible'
111111 trigger ='click'
@@ -201,6 +201,7 @@ import {
201201import AgendaDetailsModal from ' ./AgendaDetailsModal.vue'
202202
203203import { useAgendaStore } from ' ./store'
204+ import { useSiteStore } from ' ../shared/store'
204205
205206// MESSAGE PROVIDER
206207
@@ -209,6 +210,7 @@ const message = useMessage()
209210// STORES
210211
211212const agendaStore = useAgendaStore ()
213+ const siteStore = useSiteStore ()
212214
213215// DATA
214216
@@ -236,7 +238,7 @@ const meetingEvents = computed(() => {
236238
237239 return reduce (sortBy (agendaStore .scheduleAdjusted , ' adjustedStartDate' ), (acc , item ) => {
238240 const isLive = current >= item .adjustedStart && current < item .adjustedEnd
239- const itemTimeSlot = agendaStore .viewport > 576 ?
241+ const itemTimeSlot = siteStore .viewport > 576 ?
240242 ` ${ item .adjustedStart .toFormat (' HH:mm' )} - ${ item .adjustedEnd .toFormat (' HH:mm' )} ` :
241243 ` ${ item .adjustedStart .toFormat (' HH:mm' )} ${ item .adjustedEnd .toFormat (' HH:mm' )} `
242244
@@ -482,7 +484,7 @@ const pickedEvents = computed({
482484})
483485
484486const isMobile = computed (() => {
485- return agendaStore .viewport < 576
487+ return siteStore .viewport < 576
486488})
487489
488490// METHODS
0 commit comments