diff --git a/webapp/channels/src/components/__snapshots__/searchable_channel_list.test.tsx.snap b/webapp/channels/src/components/__snapshots__/searchable_channel_list.test.tsx.snap index d920d319dc..5d5090377f 100644 --- a/webapp/channels/src/components/__snapshots__/searchable_channel_list.test.tsx.snap +++ b/webapp/channels/src/components/__snapshots__/searchable_channel_list.test.tsx.snap @@ -37,15 +37,23 @@ exports[`components/SearchableChannelList should match init snapshot 1`] = `
+
+ Channel type filter set to {filterType} +
{ ); const channelDropdown = ( - - {channelDropdownItems.map((item) => item)} - + <> +
+ {this.props.intl.formatMessage({ + id: 'more_channels.channel_type_filter.filter_type_set', + defaultMessage: 'Channel type filter set to {filterType}', + }, { + filterType: this.props.filter, + })} +
+ + {channelDropdownItems.map((item) => item)} + + ); const hideJoinedButtonClass = classNames('get-app__checkbox', {checked: this.props.rememberHideJoinedChannelsChecked}); diff --git a/webapp/channels/src/i18n/en.json b/webapp/channels/src/i18n/en.json index 6cf2283aef..342e6b4266 100644 --- a/webapp/channels/src/i18n/en.json +++ b/webapp/channels/src/i18n/en.json @@ -4639,6 +4639,8 @@ "modal.manual_status.title_offline": "Your status is set to \"Offline\"", "modal.manual_status.title_ooo": "Your status is set to \"Out of office\"", "more_channels.channel_purpose": "Channel Information: Membership Indicator: Joined, Member count {memberCount} , Purpose: {channelPurpose}", + "more_channels.channel_type_filter": "Channel type filter", + "more_channels.channel_type_filter.filter_type_set": "Channel type filter set to {filterType}", "more_channels.count": "{count} Results", "more_channels.count_one": "1 Result", "more_channels.count_zero": "0 Results",