mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #547 from appwrite/feat-show-template-supported-runtimes
Update template configuration to show supported runtimes
This commit is contained in:
@@ -33,6 +33,15 @@
|
||||
<svelte:fragment slot="title">{$template.name}</svelte:fragment>
|
||||
<svelte:fragment slot="subtitle">
|
||||
{$template.tagline}
|
||||
<br />
|
||||
<br />
|
||||
Supported runtimes:
|
||||
<br />
|
||||
<div class="u-inline-flex u-flex-wrap u-margin-block-start-8 u-gap-8">
|
||||
{#each $template.runtimes.sort((r1, r2) => r1.name.localeCompare(r2.name)) as runtime}
|
||||
<Pill>{runtime.name}</Pill>
|
||||
{/each}
|
||||
</div>
|
||||
</svelte:fragment>
|
||||
<FormList>
|
||||
<InputText
|
||||
|
||||
Reference in New Issue
Block a user