diff options
Diffstat (limited to 'ui/src/components/BottomBar.svelte')
| -rw-r--r-- | ui/src/components/BottomBar.svelte | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ui/src/components/BottomBar.svelte b/ui/src/components/BottomBar.svelte index a96b086..dcad9e8 100644 --- a/ui/src/components/BottomBar.svelte +++ b/ui/src/components/BottomBar.svelte @@ -65,13 +65,10 @@ > {#if gameState.versions.length === 0} <option>Loading...</option> - {:else if gameState.installedVersionIds.length === 0} - <option disabled>No installed versions</option> {:else} {#each gameState.versions as version} - {#if gameState.installedVersionIds.includes(version.id)} - <option value={version.id}>{version.id} ({version.type})</option> - {/if} + <option value={version.id}>{version.id} ({version.type})</option + > {/each} {/if} </select> |