Update:User permission tags accessible to user are alphabetized #2667

This commit is contained in:
advplyr 2024-04-09 17:54:09 -05:00
parent e60d2a9858
commit cd7ecb9933

View File

@ -284,7 +284,7 @@ class MiscController {
}
res.json({
tags: tags
tags: tags.sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
})
}