Product: PowerShell Universal
Version: 1.4.6
I have a config like this:
New-UDDashboard -Title $UDPageTitle -Content {
New-UDTabs -Tabs {
. $Repository/src/pages/passwordReset.ps1
. $Repository/src/pages/lockedOut.ps1
. $Repository/src/pages/expiredAccount.ps1
. $Repository/src/pages/expiredPasswords.ps1
. $Repository/src/pages/bitlockerReset.ps1
}
}
I would expect the page and title to update to $UDPageTitle, but instead it’s still just “Home” and “Home”.
Is there another way to specify the page title when using -Content
instead of -Pages
or should I continue to do this as a single-page?