fixed motion title in agenda

This commit is contained in:
FinnStutzenstein 2019-01-10 12:50:12 +01:00
parent 44846da4cd
commit ebe068155a
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,8 @@ export class Motion extends AgendaBaseModel {
public getTitle(): string {
if (this.identifier) {
return this.identifier + ': ' + this.title;
} else {
return this.title;
}
}