Skip to content

Commit

Permalink
Add no speech/no structure level filters (#3306)
Browse files Browse the repository at this point in the history
  • Loading branch information
reiterl authored Feb 19, 2024
1 parent 4cddd0a commit 32ec8dc
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
});
}

Expand Down Expand Up @@ -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`) }
]
},
{
Expand Down

0 comments on commit 32ec8dc

Please sign in to comment.