Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Green Line under textarea #1159

Closed
adamdriscoll opened this issue Sep 22, 2019 · 1 comment
Closed

Green Line under textarea #1159

adamdriscoll opened this issue Sep 22, 2019 · 1 comment
Assignees
Labels
bug Something isn't working
Milestone

Comments

@adamdriscoll
Copy link
Member

        $Dashboard = New-UDDashboard -Title "Test" -Content {
            New-UDInput -Title "Simple Form" -Id "Form" -Content {
                New-UDInputField -Type 'textbox' -Name 'test' -Placeholder 'Test testbox' -DefaultValue "Test"
                New-UDInputField -Type 'checkbox' -Name 'test2' -Placeholder 'checkbox'
                New-UDInputField -Type 'select' -Name 'test3' -Placeholder 'select' -Values @("Test", "Test2", "Test3") -DefaultValue "Test"
                New-UDInputField -Type 'radioButtons' -Name 'test4' -Placeholder @("My Test Value", "My Test Value 2", "My Test Value 3") -Values @("MyTestValue", "MyTestValue2", "MyTestValue3")

                New-UDInputField -Type 'password' -Name 'test5' -Placeholder 'Password'
                New-UDInputField -Type 'textarea' -Name 'test6' -Placeholder 'Big Box o Text'
                New-UDInputField -Type 'switch' -Name 'test7' -Placeholder @("Yes", "No")
            } -Endpoint {
                param($Test, $Test2, $Test3, $Test4, $Test5, $Test6, $Test7)

                New-UDInputAction -Toast "Test" -ClearInput
            } 
        }
    

image

@adamdriscoll adamdriscoll added the bug Something isn't working label Sep 22, 2019
@leeberg
Copy link
Contributor

leeberg commented Sep 23, 2019

Fixed in dev - will PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants