Skip to content

Commit

Permalink
fix: node default sort order (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx authored Aug 29, 2024
1 parent cefcfb9 commit 47c26b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dkg-frontend",
"version": "0.7.0",
"version": "0.7.1",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/stores/nodes.store.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const useNodesStore = defineStore({
totalNodes: 0,
nodesPerPage: 10,
nodesSearch: '',
nodesSortBy: [ { key: 'id', order: 'desc' } ],
nodesSortBy: [ ],
nodesPage: 1,
}),
actions: {
Expand Down

0 comments on commit 47c26b9

Please sign in to comment.