Merge pull request #25698 from ankush/fix_virtual_order_by
fix: recorder sorting with multi-col
This commit is contained in:
commit
141e082b39
1 changed files with 1 additions and 0 deletions
|
|
@ -43,6 +43,7 @@ class Recorder(Document):
|
|||
requests = Recorder.get_filtered_requests(filters)[start : start + page_length]
|
||||
|
||||
if order_by_statment := order_by:
|
||||
order_by_statment = order_by_statment.split(",")[0]
|
||||
if "." in order_by_statment:
|
||||
order_by_statment = order_by_statment.split(".")[1]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue