Read-Host Blocks Other Users

Product: PowerShell Universal
Version: 3.5.5
Dashboard Environment: Default

When more than 1 user is using this dashboard at the same time, the entire dashboard for the other users will pause till the someone cancels the input or clicks ok on the input box.

New-UDDashboard -Title "Paperbase" -Content {
    New-UDButton -Text 'Add user' -Color primary
    New-UDCard -Title 'User Info' -Content {
        "No users for this project yet."
    }
    write-host "User $User logged in... and asking user for question:"
    $bob = Read-Host "Testing Input for many instances:"
}