fix alpha in apps

This commit is contained in:
Chris Titus Tech 2025-04-14 14:30:09 -05:00
parent 89919494e5
commit 86459b7e24

View File

@ -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 $_)
}
}