Add top to agenda projection

Show the agenda title prefix in the whole agenda slide projection
This commit is contained in:
Sean 2020-07-07 13:43:45 +02:00 committed by Emanuel Schütze
parent 3063a9e9fc
commit 32775b0a2a
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export class ItemListSlideComponent extends BaseSlideComponentDirective<ItemList
public getTitle(item: SlideItem): string {
const repo = this.collectionStringMapperService.getRepository(item.collection);
if (isBaseIsAgendaItemContentObjectRepository(repo)) {
return repo.getAgendaSlideTitle(item.title_information);
return repo.getListTitle(item.title_information);
} else {
throw new Error('The content object has no agenda based repository!');
}