From c072d41eb8b2704436ed04cd36f039791a856f35 Mon Sep 17 00:00:00 2001 From: pmario Date: Thu, 22 Feb 2024 19:40:38 +0100 Subject: [PATCH] variables.js -- set default sort name to "alphabetical" --- core/modules/filters/variables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/filters/variables.js b/core/modules/filters/variables.js index dfed2234c..723f10347 100644 --- a/core/modules/filters/variables.js +++ b/core/modules/filters/variables.js @@ -34,7 +34,7 @@ exports.variables = function(source,operator,options) { case "raw": sort = false; break; - case "sort": // the fallthrough is intentional. "sort" is default + case "alphabetical": // the fallthrough is intentional. "alphabetical" is default default: sort = true; break;