Skip to content

Commit

Permalink
Fix image order in 4-image post embeds (close #1895) (#1904)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee authored Nov 14, 2023
1 parent 68767d5 commit e08d06f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/view/com/util/images/ImageLayoutGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ function ImageLayoutGridInner(props: ImageLayoutGridInnerProps) {
<GalleryItem {...props} index={0} imageStyle={styles.image} />
</View>
<View style={styles.smallItem}>
<GalleryItem {...props} index={2} imageStyle={styles.image} />
<GalleryItem {...props} index={1} imageStyle={styles.image} />
</View>
</View>
<View style={styles.flexRow}>
<View style={styles.smallItem}>
<GalleryItem {...props} index={1} imageStyle={styles.image} />
<GalleryItem {...props} index={2} imageStyle={styles.image} />
</View>
<View style={styles.smallItem}>
<GalleryItem {...props} index={3} imageStyle={styles.image} />
Expand Down

0 comments on commit e08d06f

Please sign in to comment.