Fixed: Reinstate position in series table

pull/1148/head
ta264 4 years ago
parent 848b183ab8
commit 19549098a7

@ -100,12 +100,6 @@
composes: actionButton;
margin-right: 15px;
/* position: absolute; */
/* top: 50%; */
/* left: 90%; */
/* margin-top: -12px; */
/* margin-left: -15px; */
}
.noBooks {

@ -10,7 +10,6 @@ import { setSeriesSort, setSeriesTableOption } from 'Store/Actions/seriesActions
import createAuthorSelector from 'Store/Selectors/createAuthorSelector';
import createCommandsSelector from 'Store/Selectors/createCommandsSelector';
import createDimensionsSelector from 'Store/Selectors/createDimensionsSelector';
// import createClientSideCollectionSelector from 'Store/Selectors/createClientSideCollectionSelector';
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector';
import AuthorDetailsSeries from './AuthorDetailsSeries';

@ -8,18 +8,14 @@
width: 42px;
}
.position,
.rating,
.status {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 100px;
}
.rating {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 100px;
}
.releaseDate {
composes: cell from '~Components/Table/Cells/TableRowCell.css';

@ -146,7 +146,7 @@ class BookRow extends Component {
return (
<TableRowCell
key={name}
className={styles.title}
className={styles.position}
>
{position || ''}
</TableRowCell>

@ -44,6 +44,12 @@ export const defaultState = {
isSortable: true,
isVisible: false
},
{
name: 'position',
label: 'Number',
isSortable: true,
isVisible: true
},
{
name: 'releaseDate',
label: 'Release Date',

Loading…
Cancel
Save