From b50086138f08475f108d96ecc0d0d4729f09c622 Mon Sep 17 00:00:00 2001 From: theguymadmax <171496228+theguymadmax@users.noreply.github.com> Date: Thu, 15 Jan 2026 13:40:26 -0500 Subject: [PATCH] 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 Backported-by: thornbill --- src/apps/experimental/components/library/ItemsView.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/apps/experimental/components/library/ItemsView.tsx b/src/apps/experimental/components/library/ItemsView.tsx index 672f6c750..a38537625 100644 --- a/src/apps/experimental/components/library/ItemsView.tsx +++ b/src/apps/experimental/components/library/ItemsView.tsx @@ -222,9 +222,7 @@ const ItemsView: FC = ({ 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',