Skip to content

Commit

Permalink
Fix isRHS passing (mattermost#4390)
Browse files Browse the repository at this point in the history
  • Loading branch information
larkox authored and hmhealey committed Dec 4, 2019
1 parent 653dc2a commit a7b38a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ exports[`components/SearchResultsItem should match snapshot for DM 1`] = `
}
>
<Connect(PostMessageView)
isRHS="true"
isRHS={true}
options={
Object {
"mentionHighlight": false,
Expand Down Expand Up @@ -386,7 +386,7 @@ exports[`components/SearchResultsItem should match snapshot for archived channel
}
>
<Connect(PostMessageView)
isRHS="true"
isRHS={true}
options={
Object {
"mentionHighlight": false,
Expand Down Expand Up @@ -587,7 +587,7 @@ exports[`components/SearchResultsItem should match snapshot for channel 1`] = `
}
>
<Connect(PostMessageView)
isRHS="true"
isRHS={true}
options={
Object {
"mentionHighlight": false,
Expand Down
2 changes: 1 addition & 1 deletion components/search_results_item/search_results_item.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ class SearchResultsItem extends React.PureComponent {
searchMatches: this.props.matches,
mentionHighlight: this.props.isMentionSearch,
}}
isRHS='true'
isRHS={true}
/>
</PostBodyAdditionalContent>
);
Expand Down

0 comments on commit a7b38a1

Please sign in to comment.