We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25144cd commit 57b4527Copy full SHA for 57b4527
src/App.svelte
@@ -470,7 +470,11 @@ function langHref(lang: string, href: string) {
470
}}>
471
<optgroup label="Stable">
472
{#each builds.filter((b) => !b.prerelease) as build}
473
- <option value={build.build_number}>{build.build_number}</option>
+ <!--TODO: versions below 0.7 are not exactly supported, do a better job at dynamically finding latest supported versions. -->
474
+ {#if build.build_number === "v0.7.0"}
475
+ <option value={build.build_number}
476
+ >{build.build_number}</option>
477
+ {/if}
478
{/each}
479
</optgroup>
480
<optgroup label="Experimental">
0 commit comments