fix(web) fix test (#1059)

This commit is contained in:
Alex
2022-12-04 22:51:22 -06:00
committed by GitHub
parent 5d140145c1
commit 966d99217a
7 changed files with 35 additions and 17 deletions

View File

@@ -86,12 +86,12 @@
}
}
const locale = navigator.languages;
const locale = navigator.language;
const albumDateFormat: Intl.DateTimeFormatOptions = {
month: 'short',
day: 'numeric',
year: 'numeric'
};
month: 'short',
day: 'numeric',
year: 'numeric'
};
const getDateRange = () => {
const startDate = new Date(album.assets[0].createdAt);
@@ -101,7 +101,9 @@
const endDateString = endDate.toLocaleDateString(locale, albumDateFormat);
// If the start and end date are the same, only show one date
return startDateString === endDateString ? startDateString : `${startDateString} - ${endDateString}`;
return startDateString === endDateString
? startDateString
: `${startDateString} - ${endDateString}`;
};
onMount(async () => {