New: Sorting Series List/Mass Editor by Language Profile and Tags
Closes #3854
This commit is contained in:
parent
e733529dc3
commit
55a7253dc2
|
@ -144,6 +144,15 @@ function SeriesIndexSortMenu(props) {
|
|||
>
|
||||
Size on Disk
|
||||
</SortMenuItem>
|
||||
|
||||
<SortMenuItem
|
||||
name="tags"
|
||||
sortKey={sortKey}
|
||||
sortDirection={sortDirection}
|
||||
onPress={onSortSelect}
|
||||
>
|
||||
Tags
|
||||
</SortMenuItem>
|
||||
</MenuContent>
|
||||
</SortMenu>
|
||||
);
|
||||
|
|
|
@ -55,7 +55,7 @@ export const defaultState = {
|
|||
{
|
||||
name: 'languageProfileId',
|
||||
label: 'Language Profile',
|
||||
isSortable: false,
|
||||
isSortable: true,
|
||||
isVisible: true
|
||||
},
|
||||
{
|
||||
|
@ -85,7 +85,7 @@ export const defaultState = {
|
|||
{
|
||||
name: 'tags',
|
||||
label: 'Tags',
|
||||
isSortable: false,
|
||||
isSortable: true,
|
||||
isVisible: true
|
||||
}
|
||||
],
|
||||
|
|
|
@ -171,7 +171,7 @@ export const defaultState = {
|
|||
{
|
||||
name: 'tags',
|
||||
label: 'Tags',
|
||||
isSortable: false,
|
||||
isSortable: true,
|
||||
isVisible: false
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue