Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): Add error boundary to prevent UI crashing due to rendering …
…errors (#245) This should prevent the whole UI from going blank if there's a rendering error in JS. An example dashboard that would crash the whole UI previously is provided below. Now you get an error message and can still go back to your code studio. ```py from deephaven import ui @ui.component def Foo(): return [ ui.row(ui.stack(ui.panel(ui.text('Foo')))), ui.row(ui.stack(ui.panel(ui.text('Bar')))) ] f = ui.dashboard(Foo()) ```
- Loading branch information