Merge pull request #7470 from theguymadmax/add-alphapicker-to-sort-options

Enable AlphaPicker for non-random sorts in experimental layout
This commit is contained in:
Bill Thornton
2026-01-14 16:57:34 -05:00
committed by GitHub

View File

@@ -221,9 +221,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(
'centered padded-left padded-right padded-right-withalphapicker',