We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee6a2a6 commit 7fecb8eCopy full SHA for 7fecb8e
invokeai/frontend/web/src/features/gallery/components/ImageGrid/GalleryImage.tsx
@@ -118,7 +118,7 @@ const buildOnClick =
118
const start = Math.min(lastClickedIndex, currentClickedIndex);
119
const end = Math.max(lastClickedIndex, currentClickedIndex);
120
const imagesToSelect = imageNames.slice(start, end + 1);
121
- if(currentClickedIndex < lastClickedIndex) {
+ if (currentClickedIndex < lastClickedIndex) {
122
imagesToSelect.reverse();
123
}
124
dispatch(selectionChanged(imagesToSelect));
0 commit comments