This commit is contained in:
Anthony Stirling
2023-12-31 13:16:04 +00:00
parent f535387ac4
commit cbac784c57
2 changed files with 6 additions and 3 deletions

View File

@@ -194,6 +194,12 @@
operationsByTag[operationTag].push(operationPath);
}
});
// Sort operations within each tag alphabetically
Object.keys(operationsByTag).forEach(tag => {
operationsByTag[tag].sort();
});
// Specify the order of tags
let tagOrder = ["General", "Security", "Convert", "Misc", "Filter"];