Product: PowerShell Universal
Version: 5.5.3
Upgraded from 5.5.2 to 5.5.3 and noticed a fix to using New-UDAutocompleteOption but now without is broken. Anyone else able to confirm before I submit an issue?
My existing code worked after the upgrade but later is no longer working, which I find odd. I confirmed the same behavior in my dev environment. It worked right after the upgrade but then today it’s not working. I upgraded prod last night and this morning autocomplete worked for me. A user reported it not working and I confirmed it’s no longer working.
New-UDApp -Content {
#Works in v5.5.3 but not in 5.5.2
New-UDAutocomplete -Options @(
New-UDAutocompleteOption -Name 'Adam D' -Value '1'
New-UDAutocompleteOption -Name 'Sarah F' -Value '2'
New-UDAutocompleteOption -Name 'Tom S' -Value '3'
)
#Works in v5.5.2 but not in 5.5.3
New-UDAutocomplete -Options @('Test', 'Test2', 'Test3', 'Test4')
}