Merge pull request #5461 from tsiegleauq/list-of-speaker-slide-fix
Add prefix to topic list of speaker slide
This commit is contained in:
commit
20175a1a6b
@ -69,8 +69,7 @@ export class TopicRepositoryService extends BaseIsAgendaItemAndListOfSpeakersCon
|
|||||||
};
|
};
|
||||||
|
|
||||||
public getAgendaSlideTitle = (titleInformation: TopicTitleInformation) => {
|
public getAgendaSlideTitle = (titleInformation: TopicTitleInformation) => {
|
||||||
// Do not append ' (Topic)' to the title.
|
return this.getAgendaListTitle(titleInformation).title;
|
||||||
return this.getTitle(titleInformation);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
public getVerboseName = (plural: boolean = false) => {
|
public getVerboseName = (plural: boolean = false) => {
|
||||||
|
@ -8,9 +8,8 @@
|
|||||||
<!-- Title -->
|
<!-- Title -->
|
||||||
<div class="title-slot">
|
<div class="title-slot">
|
||||||
<h2>
|
<h2>
|
||||||
<span *ngIf="!isCurrentListOfSpeakers && !isSortMode">{{ 'List of speakers' | translate }}</span>
|
<span *ngIf="!isCurrentListOfSpeakers">{{ 'List of speakers' | translate }}</span>
|
||||||
<span *ngIf="isCurrentListOfSpeakers && !isSortMode">{{ 'Current list of speakers' | translate }}</span>
|
<span *ngIf="isCurrentListOfSpeakers">{{ 'Current list of speakers' | translate }}</span>
|
||||||
<span *ngIf="isSortMode">{{ 'Sort list of speakers' | translate }}</span>
|
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="menu-slot" *osPerms="['agenda.can_manage_list_of_speakers', 'core.can_manage_projector']">
|
<div class="menu-slot" *osPerms="['agenda.can_manage_list_of_speakers', 'core.can_manage_projector']">
|
||||||
|
Loading…
Reference in New Issue
Block a user