mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Reinstate position in series table
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user