Floating Action Button not working?

I’ve noticed that my Dashboard that uses a Floating Action Button has stopped working. I tried troubleshooting a bit but couldn’t find any issues, no log output or console output.

Lastly I just tried a blank dashboard and added the sample code from the documentation like so:

# Put code you'd like to run during dashboard startup here. 

New-UDDashboard -Title 'PowerShell Universal' -Pages @(
    # Create a page using the menu to the right ->   
    # Reference the page here with Get-UDPage
    New-UDPage -Name 'Home' -Content {
        New-UDFloatingActionButton -Icon (New-UDIcon -Icon user) -OnClick {
            Show-UDToast -Message "Hello!"
        }
    }
)

Even that doesn’t work.

My particular FAB has a modal inside it. But I assume the issue is not specific to that.

Product: PowerShell Universal
Version: 3.7.8

Fixed in 3.7.9 :slight_smile:

PowerShell Universal - 3.7.9 - PowerShell Universal / releases - Ironman Software Forums

1 Like