Merge branch 'main' of github.com:appwrite/console into fix-1.4-QA-after-release

This commit is contained in:
Arman
2023-09-06 11:10:44 +02:00
@@ -20,7 +20,8 @@
onMount(async () => {
runtime ??= $func.runtime;
options = (await $runtimesList).runtimes.map((runtime) => ({
let runtimes = await $runtimesList;
options = runtimes.runtimes.map((runtime) => ({
label: `${runtime.name} - ${runtime.version}`,
value: runtime.$id
}));