From 1757f28a5efad81fdd19ee2e9a6f559a6e2fca05 Mon Sep 17 00:00:00 2001 From: Ben Wheeler Date: Sun, 21 Jul 2019 21:11:57 -0400 Subject: [PATCH] add missing props declarations --- src/components/grid/grid.jsx | 7 ++++++- src/components/thumbnailcolumn/thumbnailcolumn.jsx | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/grid/grid.jsx b/src/components/grid/grid.jsx index 73c67edc7..14cfc720a 100644 --- a/src/components/grid/grid.jsx +++ b/src/components/grid/grid.jsx @@ -53,7 +53,12 @@ const Grid = props => ( Grid.propTypes = { className: PropTypes.string, itemType: PropTypes.string, - items: PropTypes.arrayOf(PropTypes.object) + items: PropTypes.arrayOf(PropTypes.object), + showAvatar: PropTypes.bool, + showFavorites: PropTypes.bool, + showLoves: PropTypes.bool, + showRemixes: PropTypes.bool, + showViews: PropTypes.bool }; Grid.defaultProps = { diff --git a/src/components/thumbnailcolumn/thumbnailcolumn.jsx b/src/components/thumbnailcolumn/thumbnailcolumn.jsx index d9df7dd6d..9b96d7a14 100644 --- a/src/components/thumbnailcolumn/thumbnailcolumn.jsx +++ b/src/components/thumbnailcolumn/thumbnailcolumn.jsx @@ -51,7 +51,12 @@ const ThumbnailColumn = props => ( ThumbnailColumn.propTypes = { className: PropTypes.string, itemType: PropTypes.string, - items: PropTypes.arrayOf(PropTypes.object) + items: PropTypes.arrayOf(PropTypes.object), + showAvatar: PropTypes.bool, + showFavorites: PropTypes.bool, + showLoves: PropTypes.bool, + showRemixes: PropTypes.bool, + showViews: PropTypes.bool }; ThumbnailColumn.defaultProps = {