Merge pull request #4099 from FinnStutzenstein/motion-title-fix

fixed motion title in agenda
This commit is contained in:
Emanuel Schütze 2019-01-11 16:02:10 +01:00 committed by GitHub
commit e8a4480014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
}