Product: PowerShell Universal
Version: 1.5.10
I have a published folder setup with my logo asset inside.
Here is my dashboard code:
$PageRoot = Get-ChildItem -Path "F:\Development\Dev_Dashboard\pages" | Sort-Object -Property Name
$Pages = foreach($Page in $PageRoot){
. $Page.FullName
}
New-UDDashboard -Title "Dev Dashboard" -Pages $Pages -Logo '/assets/CompanyLogo.png'
I can’t get a logo displayed on the navbar. Is this what the -Logo parameter is supposed to do?
I can get the logo displayed on each page with New-UDPage -Logo ‘/assets/CompanyLogo.png’. It takes a few seconds to pull the logo when using this, hence the approach from doing it in the dashboard code itself.