Convert indentation to tabs, as my vscode did not want to cooperate

This commit is contained in:
Thies
2025-01-30 13:02:49 +01:00
parent 94fca45af0
commit cc6a98d23b
4 changed files with 81 additions and 80 deletions

View File

@@ -19,11 +19,12 @@
let albums: ImmichAlbum[] = [];
let currentAlbum: string = '';
let selectedDate: string = (adventure as Adventure | null)?.visits.map(v => new Date(v.end_date || v.start_date)).sort((a,b) => +b - +a)[0]?.toISOString().split('T')[0] || '';
let selectedDate: string = (adventure as Adventure | null)?.visits.map(v => new Date(v.end_date || v.start_date)).sort((a,b) => +b - +a)[0]?.toISOString()?.split('T')[0] || '';
if (!selectedDate) {
selectedDate = new Date().toISOString().split('T')[0];
}
$: {
if (currentAlbum) {
immichImages = [];