From 28a0900058fb541225bba3de8feb85ea40ce8a7d Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Wed, 13 Sep 2023 11:47:19 -0700 Subject: [PATCH] Sort list of supported runtimes A sorted list is easier to scan if a developer is looking for a specific version. --- src/lib/wizards/functions/steps/templateConfiguration.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/wizards/functions/steps/templateConfiguration.svelte b/src/lib/wizards/functions/steps/templateConfiguration.svelte index afa87567a2..1f6beac3d1 100644 --- a/src/lib/wizards/functions/steps/templateConfiguration.svelte +++ b/src/lib/wizards/functions/steps/templateConfiguration.svelte @@ -38,7 +38,7 @@ Supported runtimes:
- {#each $template.runtimes as runtime} + {#each $template.runtimes.sort((r1, r2) => r1.name.localeCompare(r2.name)) as runtime} {runtime.name} {/each}