Blank dashboard after 2.9.0 upgrade

Background:
Was running dashboards fine tonight
Was running 2.5.3, decided to update-module , it installed 2.9.0 alongside

blank dashboard

deleted 2.5.3 folder, did not fix it
removed 2.9.0 via uninstall-module
reinstalled 2.9.0
Install-Module UniversalDashboard -AcceptLicense
restarted computer (Win10 1803)

Ran basic dashboard

Get-UDDashboard |Stop-UDDashboard
$Dashboard = New-UDDashboard -Title "Hello, World!" -Content {
New-UDHeading -Text "Hello, World!" -Size 1
}
Start-UDDashboard -Dashboard $Dashboard -Port 10001

Get blank dashboard

Viewing browser (edge) page sorce shows

PowerShell Universal Dashboard .v-wrap{ height: 100% !important; white-space: nowrap !important; text-align: center !important; display: block !important; min-height: auto !important; flex-direction: row !important; } .v-wrap:before{ content: ""; display: inline-block; vertical-align: middle; width: 0; /* adjust for white space between pseudo element and next sibling */ margin-right: -.25em; /* stretch line height */ height: 100vh; } .v-box{ display: inline-block; vertical-align: middle; white-space: normal; }

Have a look at the bottom of the thread here:

EDIT: Sorry, should have read closer. The issue doesn’t apply to you.

1 Like

Ok this is just my 2pence worth as I have not yet upgraded to 2.9.0…but first off is this professional or community? If professional I assume your license file is still valid and covers you to this release date? You say you removed the 2.5.3 folder…just for paranoya sakes when you import-module universaldashboard -requiredversion 2.9.0 into your script just to be sure it is loading the 2.9.0 version…also copy your .lic file into the net472 folder…I have seen numerous issues on 2.9.0 being raised in the forum, hence I delayed the upgrade…I’m running 2.8.1 now on IE and works great :grinning:

2 Likes

I am using the professional, but with no licence (to the 60 minute trial)
Good idea to try a lower version

Universal Dashboard version 2.9.0 has been working great for me on both local and thru IIS, when Adam releases a new version its basically included a fixes for issues has been reported but there is no changes to the core of the system until recently when the 3.0 project started.

so when you are testing version 2.9.0 start by uninstall-module the version you currently have and then install-module universaldashboard.

prepare your dashboard.ps1 file and open your browser and make sure to delete cache and test your dashboard.

2 Likes

thanks WSL , the clear browser cache did it!