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;
|
composes: actionButton;
|
||||||
|
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
|
|
||||||
/* position: absolute; */
|
|
||||||
/* top: 50%; */
|
|
||||||
/* left: 90%; */
|
|
||||||
/* margin-top: -12px; */
|
|
||||||
/* margin-left: -15px; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.noBooks {
|
.noBooks {
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import { setSeriesSort, setSeriesTableOption } from 'Store/Actions/seriesActions
|
|||||||
import createAuthorSelector from 'Store/Selectors/createAuthorSelector';
|
import createAuthorSelector from 'Store/Selectors/createAuthorSelector';
|
||||||
import createCommandsSelector from 'Store/Selectors/createCommandsSelector';
|
import createCommandsSelector from 'Store/Selectors/createCommandsSelector';
|
||||||
import createDimensionsSelector from 'Store/Selectors/createDimensionsSelector';
|
import createDimensionsSelector from 'Store/Selectors/createDimensionsSelector';
|
||||||
// import createClientSideCollectionSelector from 'Store/Selectors/createClientSideCollectionSelector';
|
|
||||||
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector';
|
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector';
|
||||||
import AuthorDetailsSeries from './AuthorDetailsSeries';
|
import AuthorDetailsSeries from './AuthorDetailsSeries';
|
||||||
|
|
||||||
|
|||||||
@@ -8,18 +8,14 @@
|
|||||||
width: 42px;
|
width: 42px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.position,
|
||||||
|
.rating,
|
||||||
.status {
|
.status {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rating {
|
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
||||||
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.releaseDate {
|
.releaseDate {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ class BookRow extends Component {
|
|||||||
return (
|
return (
|
||||||
<TableRowCell
|
<TableRowCell
|
||||||
key={name}
|
key={name}
|
||||||
className={styles.title}
|
className={styles.position}
|
||||||
>
|
>
|
||||||
{position || ''}
|
{position || ''}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|||||||
@@ -44,6 +44,12 @@ export const defaultState = {
|
|||||||
isSortable: true,
|
isSortable: true,
|
||||||
isVisible: false
|
isVisible: false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'position',
|
||||||
|
label: 'Number',
|
||||||
|
isSortable: true,
|
||||||
|
isVisible: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'releaseDate',
|
name: 'releaseDate',
|
||||||
label: 'Release Date',
|
label: 'Release Date',
|
||||||
|
|||||||
Reference in New Issue
Block a user