mirror of
https://github.com/Readarr/Readarr
synced 2026-01-18 13:33:34 +01:00
Fixed: Reinstate position in series table
This commit is contained in:
parent
848b183ab8
commit
19549098a7
5 changed files with 9 additions and 14 deletions
|
|
@ -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…
Reference in a new issue