We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0464245 commit f4a9508Copy full SHA for f4a9508
1 file changed
src/app/core/model/meeting/meeting.model.ts
@@ -80,14 +80,14 @@ export class MeetingImpl implements Meeting {
80
81
public getFullSeriesName(): string {
82
let out: string = "";
83
- if (this.iteration > 1) out += this.iteration + ". ";
+ if (this.iteration >= 1) out += this.iteration + ". ";
84
out += this.series.name_full;
85
return out;
86
}
87
88
public getShortSeriesName(): string {
89
90
91
out += this.series.name_short;
92
out += " "
93
out += this.getStartDate().getFullYear()
0 commit comments