Skip to content

Commit

Permalink
fix: sorting views not working, #772
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Dec 14, 2022
1 parent d5a8d75 commit 0b199d1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -737,7 +737,7 @@ export default {
},
sortViews () {
this.pool.sort((viewA, viewB) => viewA.index - viewB.index)
this.pool.sort((viewA, viewB) => viewA.nr.index - viewB.nr.index)
},
},
}
Expand Down

0 comments on commit 0b199d1

Please sign in to comment.