Product: PowerShell Universal
Version: 3.7.6
This is a strange one. I recently updated many of my dashboards from 3.2 to 3.7. In doing so, I am finding that the sort order on tables is now descending instead of ascending. This is strange because I actually do sort the data prior to passing it to the table and it is across the board that I am seeing this. Here is some of my sample code:
$ResultSQL = Invoke-Sqlcmd @SQLsiteParams
$ResultSQL = $ResultSQL | Sort-Object Applicationname
New-UDTable -Data $ResultSQL -Columns $Columns1 -Title “Application Inventory” -ShowSort -ShowFilter -ShowSearch -Dense
Any idea why the sort order is now different in these tables with the upgrade?