Hey All,
I have a simple Input and it works exactly how I want it in an older version of UD but the new 2.4.0 is different, dunno If I am missing something or if it’s a possible bug. I use a Theme and normally that takes care of it, i also tried to directly apply the color to the UDInput to see if that helps, no change. But basically the Title and Placeholder are good, and are White text since i use a black background, but the Input text the user types in comes out Black and it is impossible to read on a black background.
Suggestions?
Code snippet below:
New-UDInput -Title "EnterText" -Id "Test1" -Content {
New-UDInputField -Type textbox -Name "test1" -Placeholder "Ex: ABC123"
} -Endpoint {
param($test1)
New-UDInputAction -Toast "$test1"
}