diff options
| author | 2026-01-14 14:19:15 +0800 | |
|---|---|---|
| committer | 2026-01-14 14:19:15 +0800 | |
| commit | 21c66d00d8d300b33a353a366fa23d0773deb413 (patch) | |
| tree | 4f78d28583470c4c6ce8b635e2ba600f691bcc3f /ui/src/components | |
| parent | 45551629e1f84060d56efb3e9b362af10a1caded (diff) | |
| download | DropOut-21c66d00d8d300b33a353a366fa23d0773deb413.tar.gz DropOut-21c66d00d8d300b33a353a366fa23d0773deb413.zip | |
Revert "feat: add functionality to retrieve installed game versions"
Diffstat (limited to 'ui/src/components')
| -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> |