Backport pull request #7470 from jellyfin-web/release-10.11.z
Enable AlphaPicker for non-random sorts in experimental layout Original-merge: 014af0ebe904a824ca1d34689a25f6a5b89808c4 Merged-by: thornbill <thornbill@users.noreply.github.com> Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
@@ -222,9 +222,7 @@ const ItemsView: FC<ItemsViewProps> = ({
|
||||
const hasFilters = Object.values(libraryViewSettings.Filters ?? {}).some(
|
||||
(filter) => !!filter
|
||||
);
|
||||
const hasSortName = libraryViewSettings.SortBy.includes(
|
||||
ItemSortBy.SortName
|
||||
);
|
||||
const hasSortName = libraryViewSettings.SortBy !== ItemSortBy.Random;
|
||||
|
||||
const itemsContainerClass = classNames(
|
||||
'padded-left padded-right padded-right-withalphapicker',
|
||||
|
||||
Reference in New Issue
Block a user