Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Perspective Filter Errors #2521

Merged
merged 1 commit into from
Jul 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions panel/pane/perspective.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ def _process_param_change(self, msg):
if msg.get(p):
msg[p] = [str(col) for col in msg[p]]
if msg.get('sort'):
msg['sort'] = [[str(col), d] for col, d in msg['sort']]
msg['sort'] = [[str(col), *args] for col, *args in msg['sort']]
if msg.get('filters'):
msg['filters'] = [[str(col), e, val] for col, e, val in msg['filters']]
msg['filters'] = [[str(col), *args] for col, *args in msg['filters']]
if msg.get('aggregates'):
msg['aggregates'] = {str(col): agg for col, agg in msg['aggregates'].items()}
return msg
Expand Down