Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/containers/PersonalSchedule/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ export const formatBriefActivityName = (activity: Activity) => {
if (isOfficialEventId(eventId)) {
const event = eventById(eventId);
return _formatBriefActivityName(event.shortName, roundNumber, attemptNumber);
} else if (activity.activityCode === 'other-misc') {
return activity.name;
} else if (isUnofficialParsedActivityCode(parsed)) {
return _formatBriefActivityName(eventId.toUpperCase(), roundNumber, attemptNumber);
}
Expand Down
Loading