diff --git a/src/app/core/model/meeting/meeting.model.ts b/src/app/core/model/meeting/meeting.model.ts index e82c9e8..812a458 100644 --- a/src/app/core/model/meeting/meeting.model.ts +++ b/src/app/core/model/meeting/meeting.model.ts @@ -80,14 +80,14 @@ export class MeetingImpl implements Meeting { public getFullSeriesName(): string { let out: string = ""; - if (this.iteration > 1) out += this.iteration + ". "; + if (this.iteration >= 1) out += this.iteration + ". "; out += this.series.name_full; return out; } public getShortSeriesName(): string { let out: string = ""; - if (this.iteration > 1) out += this.iteration + ". "; + if (this.iteration >= 1) out += this.iteration + ". "; out += this.series.name_short; out += " " out += this.getStartDate().getFullYear()