mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Sort list of supported runtimes
A sorted list is easier to scan if a developer is looking for a specific version.
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
Supported runtimes:
|
||||
<br />
|
||||
<div class="u-inline-flex u-flex-wrap u-margin-block-start-8 u-gap-8">
|
||||
{#each $template.runtimes as runtime}
|
||||
{#each $template.runtimes.sort((r1, r2) => r1.name.localeCompare(r2.name)) as runtime}
|
||||
<Pill>{runtime.name}</Pill>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user