New-udpage -roles blank page with multiple roles

Product: PowerShell Universal
Version: 2.0.3

When trying to set a new page with multiple roles for access, the page is displaying in the navigation menu when the user has the role to grant access. The page will display fine when there is one role been set however when more than one role has been set the page is in the navigation menu but the page is blank. Are multiple roles supported in pages?

Example code below, logging in as a ServiceDeskAdmin all pages appear in the navigation menu but page three is blank!

pages = @()

$pages += New-UDPage -Name "PageOne" -Url 'PageOne' -Content {

New-UDCard -Title "Page One" -Content {

"Your role on this dashboard is $($roles)" 

}

} -NavigationLayout permanent 

$pages += New-UDPage -Name "PageTwo" -Url 'PageTwo' -role "ServiceDeskAdmin" -Content {

New-UDCard -Title "Page Two" -Content {

"Your role on this dashboard is $($roles)" 

}

} -NavigationLayout permanent 

$pages += New-UDPage -Name "Pagethree" -Url 'Pagethree' -role @("ServiceDeskAdmin", "DatabaseAdmins") -Content {

New-UDCard -Title "Page Three" -Content {

"Your role on this dashboard is $($roles)" 

}

} -NavigationLayout permanent 

$pages += New-UDPage -Name "Pagefour" -Url 'Pagefour' -Content {

$testaccesslevel = "deny"

If ($roles -contains "ServiceDeskAdmin"){$testaccesslevel = "grant"}

New-UDCard -Title "Page One" -Content {

"Your role on this dashboard is $($roles) dummy access level is $($testaccesslevel)" 

}

} -NavigationLayout permanent 

New-UDDashboard -Title "Test" -Pages $Pages

Page Two screenshot

Page Three screenshot (multiple roles)

They are supported but this sounds like a bug.