mirror of
https://github.com/apache/superset.git
synced 2026-07-16 11:46:09 +00:00
CodeAnt review:
- The request validator rejected an explicit empty reorder list because it
used a falsy check; the payload builder already treats reorder is not None
as an operation. Align the validator (check reorder is None) so
{"reorder": []} is a valid no-op operation.
- native_filter_configuration could be a non-list or contain non-dict items,
crashing payload building on conf["id"]/conf.get(...). Filter to dict
entries in _current_native_filter_config.
Add regression tests and two helper docstrings flagged in review.