Merge pull request #10434 from adityahase/fix-recorder-sensible-defaults
fix(recorder): Use sane defaults for sorting
This commit is contained in:
commit
3a52fe8949
2 changed files with 4 additions and 4 deletions
|
|
@ -114,8 +114,8 @@ export default {
|
|||
{label: "Time", slug: "time", sortable: true},
|
||||
],
|
||||
query: {
|
||||
sort: "time",
|
||||
order: "asc",
|
||||
sort: "duration",
|
||||
order: "desc",
|
||||
filters: {},
|
||||
pagination: {
|
||||
limit: 20,
|
||||
|
|
|
|||
|
|
@ -216,8 +216,8 @@ export default {
|
|||
{label: "Exact Copies", slug: "exact_copies", sortable: true},
|
||||
],
|
||||
query: {
|
||||
sort: "index",
|
||||
order: "asc",
|
||||
sort: "duration",
|
||||
order: "desc",
|
||||
pagination: {
|
||||
limit: 20,
|
||||
page: 1,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue