Skip to main content

Add a TODO comment

ID
e6274b4
date
2023-06-08 09:24:34+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
65d1f8d
message
Add a TODO comment
changed files
1 file, 1 addition

Changed files

BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift (1950) → BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift (2024)

diff --git a/BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift b/BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift
index 68e8b67..71e86e2 100644
--- a/BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift
+++ b/BlinkReviewer/BlinkReviewer/Views/PhotoReviewer.swift
@@ -19,6 +19,7 @@ struct PhotoReviewer: View {
                 ScrollView(.horizontal) {
                     LazyHStack(spacing: 5) {
                         // TODO: placeholder images for start/end
+                        // TODO: Allow tapping thumbnails to jump to that
                         ForEach(assets, id: \.localIdentifier) { asset in
                             ThumbnailItem(thumbnail: asset.getThumbnail(), isSelected: assets[selectedAssetIndex].localIdentifier == asset.localIdentifier)
                         }