Skip to content

Commit

Permalink
Show most recently modified dandisets first by default (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh authored Jun 23, 2021
1 parent 0ec42fc commit e97077b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/DandisetsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default defineComponent({
const route = ctx.root.$route;
const sortOption = ref(Number(route.query.sortOption) || 0);
const sortDir = ref(Number(route.query.sortDir || 1));
const sortDir = ref(Number(route.query.sortDir || -1));
const page = ref(Number(route.query.page) || 1);
const pageTitle = computed(() => ((props.search) ? route.query.search as string : props.title));
Expand Down

0 comments on commit e97077b

Please sign in to comment.