More UI Cleanup

This commit is contained in:
Qstick
2017-10-07 18:38:31 -04:00
parent 9c88c2006d
commit 1700c471b7
96 changed files with 267 additions and 333 deletions
@@ -69,7 +69,7 @@ class ArtistIndexTable extends Component {
columns
} = this.props;
const series = items[rowIndex];
const artist = items[rowIndex];
return (
<ArtistIndexItemConnector
@@ -77,7 +77,7 @@ class ArtistIndexTable extends Component {
component={ArtistIndexRow}
style={style}
columns={columns}
{...series}
{...artist}
/>
);
}
@@ -8,10 +8,10 @@ function createMapStateToProps() {
return createSelector(
(state) => state.app.dimensions,
createClientSideCollectionSelector(),
(dimensions, series) => {
(dimensions, artist) => {
return {
isSmallScreen: dimensions.isSmallScreen,
...series
...artist
};
}
);
@@ -30,5 +30,5 @@ export default connectSection(
createMapDispatchToProps,
undefined,
{ withRef: true },
{ section: 'series', uiSection: 'artistIndex' }
{ section: 'artist', uiSection: 'artistIndex' }
)(ArtistIndexTable);