1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-25 15:59:38 +02:00

Add region map to worldtravel region page

This commit is contained in:
Sean Morley 2024-12-20 15:55:30 -05:00
parent d6eb4edddd
commit c9dd5fe33d
4 changed files with 127 additions and 2 deletions

View file

@ -55,8 +55,13 @@
<!-- Title and Type -->
<div class="flex items-center justify-between">
<h2 class="card-title text-lg font-semibold truncate">{transportation.name}</h2>
<div class="badge badge-secondary">
{$t(`transportation.modes.${transportation.type}`)}
<div class="flex items-center gap-2">
<div class="badge badge-secondary">
{$t(`transportation.modes.${transportation.type}`)}
</div>
{#if transportation.type == 'plane' && transportation.flight_number}
<div class="badge badge-neutral-200">{transportation.flight_number}</div>
{/if}
</div>
</div>

View file

@ -184,6 +184,10 @@
return;
}
if (transportation.type != 'plane') {
transportation.flight_number = '';
}
if (transportation.id === '') {
let res = await fetch('/api/transportations', {
method: 'POST',