From ef35c9702a594339fd3e7e7f1f183439080b2b44 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Thu, 9 Jul 2026 11:35:54 +0300 Subject: [PATCH 1/2] feat: enable alphabetical sorting of API operations --- src/scripts/redoc-init.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/redoc-init.js b/src/scripts/redoc-init.js index be4ab3f3..ebf9c105 100644 --- a/src/scripts/redoc-init.js +++ b/src/scripts/redoc-init.js @@ -1,6 +1,7 @@ function initRedoc(apiSpecUrl) { Redoc.init(apiSpecUrl, { menuToggle: true, + sortOperationsAlphabetically: true, theme: { logo: { gutter: '4px', From 0541bd980a7249dfd65b9a6ab11199994085d7a5 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Thu, 9 Jul 2026 11:44:17 +0300 Subject: [PATCH 2/2] feat: enable alphabetical sorting for tags in Redoc configuration --- src/scripts/redoc-init.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/redoc-init.js b/src/scripts/redoc-init.js index ebf9c105..44ff0f90 100644 --- a/src/scripts/redoc-init.js +++ b/src/scripts/redoc-init.js @@ -2,6 +2,7 @@ function initRedoc(apiSpecUrl) { Redoc.init(apiSpecUrl, { menuToggle: true, sortOperationsAlphabetically: true, + sortTagsAlphabetically: true, theme: { logo: { gutter: '4px',