Skip to content

Commit

Permalink
fix: online keynotes visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
samipe committed Nov 14, 2024
1 parent 58fa645 commit f6060ee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RoboCon - Robot Framework Conference</title>
<script defer src="/spa.js"></script>
<script type="module" crossorigin src="/assets/index-CrYJf5QC.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Dx3dn50d.css">
<script type="module" crossorigin src="/assets/index-DK-GfmjQ.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-DUUVxfZE.css">
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PretalxSchedule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const talks = computed(() => {
live: sortTalks(schedule.slots.filter((talk) => talk?.slot?.room?.en === 'RoboCon').map((event) => addSubmissionData(event))),
workshop: sortTalks(schedule.slots.filter((talk) => talk?.submission_type.en === 'Workshop - Full Day').map((event) => addSubmissionData(event))),
tutorial: sortTalks(schedule.slots.filter((talk) => talk?.submission_type.en === 'Tutorial').map((event) => addSubmissionData(event))),
online: sortTalks(schedule.slots.filter((talk) => talk?.slot?.room?.en === 'RoboCon Online' && ['PreRecorded-Talk', 'Talk'].includes(talk.submission_type.en)).map((event) => addSubmissionData(event)))
online: sortTalks(schedule.slots.filter((talk) => talk?.slot?.room?.en === 'RoboCon Online' && ['PreRecorded-Talk', 'Talk', 'Keynote'].includes(talk.submission_type.en)).map((event) => addSubmissionData(event)))
}
})
Expand Down

0 comments on commit f6060ee

Please sign in to comment.