mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Fixed: Sorting tables by artist/album
Fixes Sentry LIDARR-10A Fixes Sentry LIDARR-105 Fixes Sentry LIDARR-109
This commit is contained in:
parent
0f5531af4d
commit
2e1e2137a6
10 changed files with 20 additions and 20 deletions
|
@ -49,7 +49,7 @@ function CutoffUnmetRow(props) {
|
|||
return null;
|
||||
}
|
||||
|
||||
if (name === 'artist.sortName') {
|
||||
if (name === 'artists.sortName') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
<ArtistNameLink
|
||||
|
@ -60,7 +60,7 @@ function CutoffUnmetRow(props) {
|
|||
);
|
||||
}
|
||||
|
||||
if (name === 'albumTitle') {
|
||||
if (name === 'albums.title') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
<AlbumTitleLink
|
||||
|
|
|
@ -46,7 +46,7 @@ function MissingRow(props) {
|
|||
return null;
|
||||
}
|
||||
|
||||
if (name === 'artist.sortName') {
|
||||
if (name === 'artists.sortName') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
<ArtistNameLink
|
||||
|
@ -57,7 +57,7 @@ function MissingRow(props) {
|
|||
);
|
||||
}
|
||||
|
||||
if (name === 'albumTitle') {
|
||||
if (name === 'albums.title') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
<AlbumTitleLink
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue