diff --git a/client/src/app/shared/models/motions/motion.ts b/client/src/app/shared/models/motions/motion.ts index ea8adeeda..403cb7b3f 100644 --- a/client/src/app/shared/models/motions/motion.ts +++ b/client/src/app/shared/models/motions/motion.ts @@ -59,6 +59,8 @@ export class Motion extends AgendaBaseModel { public getTitle(): string { if (this.identifier) { return this.identifier + ': ' + this.title; + } else { + return this.title; } }