summaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components')
-rw-r--r--ui/src/components/BottomBar.svelte7
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>