Skip to content

Commit

Permalink
Update:User permission tags accessible to user are alphabetized #2667
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Apr 9, 2024
1 parent e60d2a9 commit cd7ecb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/controllers/MiscController.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class MiscController {
}

res.json({
tags: tags
tags: tags.sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
})
}

Expand Down

0 comments on commit cd7ecb9

Please sign in to comment.