|
@@ -12,6 +12,7 @@ class SearchResultList extends React.Component {
|
|
|
return (
|
|
return (
|
|
|
<SearchResultListItem
|
|
<SearchResultListItem
|
|
|
page={page}
|
|
page={page}
|
|
|
|
|
+ selectedPageId={this.props.selectedPage.id}
|
|
|
onClickInvoked={this.props.onClickInvoked}
|
|
onClickInvoked={this.props.onClickInvoked}
|
|
|
noLink
|
|
noLink
|
|
|
/>
|
|
/>
|
|
@@ -24,6 +25,7 @@ class SearchResultList extends React.Component {
|
|
|
SearchResultList.propTypes = {
|
|
SearchResultList.propTypes = {
|
|
|
pages: PropTypes.array.isRequired,
|
|
pages: PropTypes.array.isRequired,
|
|
|
deletionMode: PropTypes.bool.isRequired,
|
|
deletionMode: PropTypes.bool.isRequired,
|
|
|
|
|
+ selectedPage: PropTypes.object,
|
|
|
selectedPages: PropTypes.array.isRequired,
|
|
selectedPages: PropTypes.array.isRequired,
|
|
|
onClickInvoked: PropTypes.func,
|
|
onClickInvoked: PropTypes.func,
|
|
|
onChangeInvoked: PropTypes.func,
|
|
onChangeInvoked: PropTypes.func,
|