From cbac784c5798adb00e1ef0d6463da9c4aa767600 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sun, 31 Dec 2023 13:16:04 +0000 Subject: [PATCH] pipeline --- src/main/resources/static/js/pipeline.js | 6 ++++++ src/main/resources/templates/pipeline.html | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/resources/static/js/pipeline.js b/src/main/resources/static/js/pipeline.js index 8db09c48..792332ca 100644 --- a/src/main/resources/static/js/pipeline.js +++ b/src/main/resources/static/js/pipeline.js @@ -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"]; diff --git a/src/main/resources/templates/pipeline.html b/src/main/resources/templates/pipeline.html index 898976c7..94d75648 100644 --- a/src/main/resources/templates/pipeline.html +++ b/src/main/resources/templates/pipeline.html @@ -69,7 +69,6 @@