Skip to content

Commit

Permalink
Apply #1627 to JS too
Browse files Browse the repository at this point in the history
  • Loading branch information
marksteward committed May 27, 2024
1 parent 8002d39 commit 38d6ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/schedule/ScheduleData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ScheduleData {
e.endTime = DateTime.fromSQL(e.end_date, { locale: 'en-GB' });
e.officialEvent = e.is_from_cfp;

e.noRecording = !e.may_record && e.officialEvent && e.type === 'talk';
e.noRecording = !e.may_record && e.officialEvent && (e.type === 'talk' || e.type === 'performance');

if (e.type === 'youthworkshop') {
e.humanReadableType = 'Youth Workshop'
Expand Down

0 comments on commit 38d6ce0

Please sign in to comment.