Skip to content

Commit

Permalink
Merge pull request #547 from appwrite/feat-show-template-supported-ru…
Browse files Browse the repository at this point in the history
…ntimes

Update template configuration to show supported runtimes
  • Loading branch information
TorstenDittmann authored Sep 14, 2023
2 parents 901f70f + 28a0900 commit 14d963a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib/wizards/functions/steps/templateConfiguration.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

1 comment on commit 14d963a

@vercel
Copy link

@vercel vercel bot commented on 14d963a Sep 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

console-preview – ./

console-preview-appwrite.vercel.app
console-next.vercel.app
console-preview-git-main-appwrite.vercel.app

Please sign in to comment.