Fix bug YH-3030, reviewed by redding.
Showing
2 changed files
with
2 additions
and
0 deletions
@@ -211,6 +211,7 @@ export default class Posting extends Component { | @@ -211,6 +211,7 @@ export default class Posting extends Component { | ||
211 | selectedSectionName={this.props.selectedBoard} | 211 | selectedSectionName={this.props.selectedBoard} |
212 | hidden={!this.state.showSectionSelector} | 212 | hidden={!this.state.showSectionSelector} |
213 | onPressSection={this.props.onBoardPress} | 213 | onPressSection={this.props.onBoardPress} |
214 | + onPressBlurAll={this.onPressBlurAll} | ||
214 | /> | 215 | /> |
215 | </View> | 216 | </View> |
216 | ); | 217 | ); |
@@ -49,6 +49,7 @@ export default class SectionSelector extends Component { | @@ -49,6 +49,7 @@ export default class SectionSelector extends Component { | ||
49 | numberOfLines={1} | 49 | numberOfLines={1} |
50 | onPress={() => { | 50 | onPress={() => { |
51 | this.props.onPressSection && this.props.onPressSection(item.forumName, item.forumCode); | 51 | this.props.onPressSection && this.props.onPressSection(item.forumName, item.forumCode); |
52 | + this.props.onPressBlurAll && this.props.onPressBlurAll(); | ||
52 | }} | 53 | }} |
53 | > | 54 | > |
54 | {item.forumName} | 55 | {item.forumName} |
-
Please register or login to post a comment