WIP <Compose> Refactor; 1000 tiny edits

This commit is contained in:
kibigo!
2018-01-03 12:36:21 -08:00
parent b4a3792201
commit 42f50049ff
32 changed files with 873 additions and 795 deletions

View File

@@ -51,7 +51,7 @@ export default function DrawerHeader ({
}) {
// Only renders the component if the column isn't being shown.
const renderForColumn = conditionalRender.bind(
const renderForColumn = conditionalRender.bind(null,
columnId => !columns || !columns.some(
column => column.get('id') === columnId
)
@@ -110,6 +110,7 @@ export default function DrawerHeader ({
);
}
// Props.
DrawerHeader.propTypes = {
columns: ImmutablePropTypes.list,
intl: PropTypes.object,