Skip to content

Commit

Permalink
refactor: move lesson before subject
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Dec 1, 2023
1 parent c2a2eb6 commit 594aca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lessons/lessons.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class LessonsService {
({
uid: l.id.toString(),
title: l.lstext
? `${l.lstext} (${l.su.map((s) => s.longname).join(', ')})`
? `${l.su.map((s) => s.longname).join(', ')} (${l.lstext})`
: l.su.map((s) => s.longname).join(', '),

description: `Teacher(s): ${l.te
Expand Down

0 comments on commit 594aca7

Please sign in to comment.