Fix: Alphabetical sorting of installed (closes #250)

This commit is contained in:
machiav3lli 2022-07-27 02:56:13 +02:00
parent f5fd8c30df
commit 2019262680

View File

@ -225,7 +225,7 @@ class InstalledFragment : MainNavFragmentX() {
)*/ )*/
} }
ProductsVerticalRecycler( ProductsVerticalRecycler(
productsList = primaryList?.sortedBy(Product::label), productsList = primaryList?.sortedBy { it.label.lowercase() },
repositories = repositories, repositories = repositories,
favorites = favorites, favorites = favorites,
modifier = Modifier modifier = Modifier