diff --git a/client/src/app/site/pages/meetings/pages/participants/pages/participant-speaker-list/services/participant-speaker-list-filter.service/participant-speaker-list-filter.service.ts b/client/src/app/site/pages/meetings/pages/participants/pages/participant-speaker-list/services/participant-speaker-list-filter.service/participant-speaker-list-filter.service.ts index 65db349ae6..35608cb725 100644 --- a/client/src/app/site/pages/meetings/pages/participants/pages/participant-speaker-list/services/participant-speaker-list-filter.service/participant-speaker-list-filter.service.ts +++ b/client/src/app/site/pages/meetings/pages/participants/pages/participant-speaker-list/services/participant-speaker-list-filter.service/participant-speaker-list-filter.service.ts @@ -34,7 +34,8 @@ export class ParticipantSpeakerListFilterService extends BaseMeetingFilterListSe this.updateFilterForRepo({ repo: structureRepo, - filter: this.speakerStructureLevelFilterOptions + filter: this.speakerStructureLevelFilterOptions, + noneOptionLabel: this.translate.instant(`No structure level`) }); } @@ -62,7 +63,11 @@ export class ParticipantSpeakerListFilterService extends BaseMeetingFilterListSe { condition: SpeechState.CONTRA, label: this.translate.instant(`Contra speech`) }, { condition: SpeechState.CONTRIBUTION, label: this.translate.instant(`Contribution`) }, { condition: SpeechState.INTERVENTION, label: this.translate.instant(`Intervention`) }, - { condition: SpeechState.INTERPOSED_QUESTION, label: this.translate.instant(`Interposed question`) } + { + condition: SpeechState.INTERPOSED_QUESTION, + label: this.translate.instant(`Interposed question`) + }, + { condition: null, label: this.translate.instant(`No speech type`) } ] }, {