Commit 3a74733
fix: Resize contextual help popup for widget error messages (#995)
- Default size was limited to just 250px, which is too small for this
use case
- Just set width to "auto" so it resizes to the contents
- Tested with a bad widget and opening the contextual help error
message:
```python
from deephaven import ui
@ui.component
def ui_boom():
raise Exception("Boom")
boom = ui_boom()
```
---------
Co-authored-by: Don <[email protected]>1 parent 103c1e7 commit 3a74733
2 files changed
+12
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
46 | 49 | | |
47 | 50 | | |
48 | 51 | | |
| |||
0 commit comments