Skip to content

Commit b9fbb45

Browse files
authored
Merge pull request #1008 from Arnei/sort-series-table-by-date
Sort series table by date per default
2 parents ac0c9d1 + 805841e commit b9fbb45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/thunks/tableThunks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ export const loadSeriesIntoTable = (): AppThunk => (dispatch, getState) => {
139139

140140
tableData = {
141141
...tableData,
142-
sortBy: "title",
143-
reverse: "ASC",
142+
sortBy: "createdDateTime",
143+
reverse: "DESC",
144144
multiSelect: multiSelect,
145145
};
146146
}

0 commit comments

Comments
 (0)