From f4a9508e093b6b2c0ac346ae714ff10d2a4d6e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Wei=C3=9F?= Date: Fri, 29 May 2026 20:57:52 +0200 Subject: [PATCH] fix meeting series iteration number == 1 not shown --- src/app/core/model/meeting/meeting.model.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()