Merge pull request #10434 from adityahase/fix-recorder-sensible-defaults

fix(recorder): Use sane defaults for sorting
This commit is contained in:
mergify[bot] 2020-05-21 09:45:57 +00:00 committed by GitHub
commit 3a52fe8949
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -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,