From 86459b7e24e2f839a224e510aa32b20d13045f92 Mon Sep 17 00:00:00 2001 From: Chris Titus Tech Date: Mon, 14 Apr 2025 14:30:09 -0500 Subject: [PATCH] fix alpha in apps --- functions/private/Initialize-InstallCategoryAppList.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/private/Initialize-InstallCategoryAppList.ps1 b/functions/private/Initialize-InstallCategoryAppList.ps1 index 47c6d72e..5e69c42b 100644 --- a/functions/private/Initialize-InstallCategoryAppList.ps1 +++ b/functions/private/Initialize-InstallCategoryAppList.ps1 @@ -73,7 +73,7 @@ function Initialize-InstallCategoryAppList { $wrapPanel.Visibility = [Windows.Visibility]::Collapsed $wrapPanel.Tag = "CategoryWrapPanel_$category" $null = $TargetElement.Items.Add($wrapPanel) - $appsByCategory[$category] | ForEach-Object { + $appsByCategory[$category] |Sort-Object | ForEach-Object { $sync.$_ = $(Initialize-InstallAppEntry -TargetElement $wrapPanel -AppKey $_) } }