-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Root cause:
frontend/app/pages/schedule.vue
Lines 139 to 140 in 1284afa
| // TODO fix the correct index | |
| this.customPosition = this.customScheduleDay >= this.getToday ? this.customScheduleDay - this.getToday : (7 - this.getToday) + this.customScheduleDay |
Index probably not being computed correctly which causes regular FullItem be rendered instead og Custom, see:
frontend/app/pages/schedule.vue
Lines 22 to 27 in 1284afa
| <div v-if="customPosition === index"> | |
| <ScheduleCustom :show="show" /> | |
| </div> | |
| <div v-else> | |
| <ScheduleFullitem :show="show" /> | |
| </div> |
As a result, the image URL is not found, as it is only in arcsi and not in CMS (custom schedule), see:
Rendered:
| <img :src="show.cover_image_url" :alt="show.name"> |
Should render:
| <img :src="show.image" :alt="show.name"> |
Quick fix (done): cover_image_url column is temporary added and filled with the image URL in the CMS custom schedule data structure
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working