Enhance geocoding functionality with host resolution and improved error handling; update AdventureModal for loading state management; refine LocationDropdown toast display logic; adjust world travel page for better documentation link visibility.

This commit is contained in:
Sean Morley
2025-05-23 10:46:37 -04:00
parent 0d800e8986
commit 2ccb8f5e0b
5 changed files with 54 additions and 17 deletions

View File

@@ -165,13 +165,16 @@
{#if filteredCountries.length === 0}
<p class="text-center font-bold text-2xl mt-12">{$t('worldtravel.no_countries_found')}</p>
<div class="text-center mt-4">
<a
class="link link-primary"
href="https://adventurelog.app/docs/configuration/updating.html#updating-the-region-data"
target="_blank">{$t('settings.documentation_link')}</a
>
</div>
<!-- If there are no allCountries then likely the download country command has not run on the server -->
{#if allCountries.length === 0}
<div class="text-center mt-4">
<a
class="link link-primary"
href="https://adventurelog.app/docs/configuration/updating.html#updating-the-region-data"
target="_blank">{$t('settings.documentation_link')}</a
>
</div>
{/if}
{/if}
<svelte:head>