Fix modifier typo in search screen (#5267)
This commit is contained in:
parent
4ce430bdb8
commit
ec9c2fba3d
2 changed files with 2 additions and 2 deletions
|
|
@ -113,7 +113,7 @@ exports[`Search should match snapshot 1`] = `
|
|||
},
|
||||
Object {
|
||||
"description": "to find posts in specific channels",
|
||||
"modifier": ":channel-name",
|
||||
"modifier": "channel-name",
|
||||
"testID": "search.in_section",
|
||||
"value": "in:",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -584,7 +584,7 @@ export default class Search extends PureComponent {
|
|||
}, {
|
||||
value: 'in:',
|
||||
testID: 'search.in_section',
|
||||
modifier: `:${intl.formatMessage({id: 'mobile.search.in_modifier_title', defaultMessage: 'channel-name'})}`,
|
||||
modifier: `${intl.formatMessage({id: 'mobile.search.in_modifier_title', defaultMessage: 'channel-name'})}`,
|
||||
description: intl.formatMessage({
|
||||
id: 'mobile.search.in_modifier_description',
|
||||
defaultMessage: 'to find posts in specific channels',
|
||||
|
|
|
|||
Loading…
Reference in a new issue