Show timezone information on visits list (#865)

* Initial plan

* Initial investigation: Show timezone on visits list - planning implementation

Co-authored-by: seanmorley15 <98704938+seanmorley15@users.noreply.github.com>

* Show timezone on visits list - add timezone badge display

Co-authored-by: seanmorley15 <98704938+seanmorley15@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: seanmorley15 <98704938+seanmorley15@users.noreply.github.com>
This commit is contained in:
Copilot
2025-09-18 08:10:07 -04:00
committed by GitHub
parent 4907ba8700
commit 2527e34518
20 changed files with 19853 additions and 14299 deletions

5551
frontend/package-lock.json generated Normal file
View File

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
autoprefixer: {}
}
};

View File

@@ -64,7 +64,7 @@
ja: '日本語',
ar: 'العربية',
'pt-br': 'Português (Brasil)',
'sk': 'Slovenský'
sk: 'Slovenský'
};
const submitLocaleChange = (event: Event) => {

View File

@@ -899,6 +899,9 @@
{:else}
<ClockIcon class="w-3 h-3 text-base-content/50" />
{/if}
{#if visit.timezone && !isAllDay(visit.start_date)}
<span class="badge badge-outline badge-sm">{visit.timezone}</span>
{/if}
<div class="text-sm font-medium truncate">
{#if isAllDay(visit.start_date)}
{visit.start_date && typeof visit.start_date === 'string'