Description
If a dashboard is not passed a ui.component instance as its child parameter, it will open a dashboard, but nothing will render. The most basic example is something like d = ui.dashboard(4). A more plausible example is d = ui.dashboard(my_component) where my_component should have been called to create the ui.component, but it isn't.
Steps to reproduce
import deephaven.ui as ui
d = ui.dashboard(4)
Expected results
Python error or at least an error printed to the dashboard that opens.
Actual results
No error. Dashboard opens and displays nothing.