diff --git a/app/polymer/package.json b/app/polymer/package.json index 7f94ca52f8d2..a90e18a23b25 100644 --- a/app/polymer/package.json +++ b/app/polymer/package.json @@ -41,7 +41,7 @@ "babel-runtime": "^6.26.0", "case-sensitive-paths-webpack-plugin": "^2.1.1", "common-tags": "^1.4.0", - "copy-webpack-plugin": "^4.4.2", + "copy-webpack-plugin": "^4.5.0", "core-js": "^2.5.1", "dotenv-webpack": "^1.5.5", "find-cache-dir": "^1.0.0", diff --git a/app/react-native/src/preview/components/StoryListView/index.js b/app/react-native/src/preview/components/StoryListView/index.js index f3028404026b..7025902bc82c 100644 --- a/app/react-native/src/preview/components/StoryListView/index.js +++ b/app/react-native/src/preview/components/StoryListView/index.js @@ -14,12 +14,12 @@ SectionHeader.propTypes = { selected: PropTypes.bool.isRequired, }; -const ListItem = ({ title, selected, onPress }) => ( +const ListItem = ({ kind, title, selected, onPress }) => ( {title} @@ -28,6 +28,7 @@ const ListItem = ({ title, selected, onPress }) => ( ListItem.propTypes = { title: PropTypes.string.isRequired, + kind: PropTypes.string.isRequired, onPress: PropTypes.func.isRequired, selected: PropTypes.bool.isRequired, }; @@ -92,10 +93,12 @@ export default class StoryListView extends Component { render() { return ( (