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:
theguymadmax
2026-01-15 13:40:26 -05:00
committed by thornbill
parent 2edc26da02
commit b50086138f
@@ -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',