Skip to content

Commit f4a9508

Browse files
committed
fix meeting series iteration number == 1 not shown
1 parent 0464245 commit f4a9508

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/core/model/meeting/meeting.model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ export class MeetingImpl implements Meeting {
8080

8181
public getFullSeriesName(): string {
8282
let out: string = "";
83-
if (this.iteration > 1) out += this.iteration + ". ";
83+
if (this.iteration >= 1) out += this.iteration + ". ";
8484
out += this.series.name_full;
8585
return out;
8686
}
8787

8888
public getShortSeriesName(): string {
8989
let out: string = "";
90-
if (this.iteration > 1) out += this.iteration + ". ";
90+
if (this.iteration >= 1) out += this.iteration + ". ";
9191
out += this.series.name_short;
9292
out += " "
9393
out += this.getStartDate().getFullYear()

0 commit comments

Comments
 (0)