mirror of
https://github.com/immich-app/immich.git
synced 2025-11-25 05:50:43 +09:00
fix(web): non-null error
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
segment.timeGroup = bucket.bucketDate;
|
||||
segment.date = fromLocalDateTime(segment.timeGroup);
|
||||
|
||||
if (prev && prev!.date.year !== segment.date.year && height > MIN_YEAR_LABEL_DISTANCE) {
|
||||
if (prev?.date.year !== segment.date.year && height > MIN_YEAR_LABEL_DISTANCE) {
|
||||
prev.hasLabel = true;
|
||||
height = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user