Skip to content

Commit

Permalink
Merge pull request #81 from MatrixDJ96/master
Browse files Browse the repository at this point in the history
Sort custom options list
  • Loading branch information
evsar3 authored Apr 27, 2021
2 parents 33c4ed0 + de2c9dd commit 8e76aab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default {
data () {
return {
options: SshfsParamsList
options: SshfsParamsList.sort((a, b) => a.name > b.name ? 1 : (a.name < b.name ? -1 : 0))
}
}
}
Expand Down

0 comments on commit 8e76aab

Please sign in to comment.