You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is fine in many cases, but there are others where we need to differentiate null vs undefined values (e.g. selected_key in Picker and ComboBox components).
In dh ui, we currently serialize Python dictionaries dropping
None
valuesdeephaven-plugins/plugins/ui/src/deephaven/ui/_internal/utils.py
Line 105 in 6977a33
This is fine in many cases, but there are others where we need to differentiate
null
vsundefined
values (e.g.selected_key
in Picker and ComboBox components).A way we could address this:
UNDEFINED
selected_key=UNDEFINED
)dict_to_camel_case
dropUNDEFINED
values but keepNone
values asnull
The text was updated successfully, but these errors were encountered: