Skip to content

Commit

Permalink
fix: Fix sorting of subtitle (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
정현 committed Mar 29, 2024
2 parents a295c08 + 1fa5715 commit 3558cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/FramePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const FramePage = () => {
chevronIos={false}
key={index}
title={photo.name}
subtitle={`${photo.focalLength} ${photo.iso} ${photo.aperture} ${photo.shutterSpeed}`}
subtitle={`${photo.focalLength} ${photo.aperture} ${photo.shutterSpeed} ${photo.iso}`}
text={`${photo.cameraMaker} ${photo.cameraModel} ${photo.lensModel}`}
after={
<>
Expand Down

0 comments on commit 3558cfe

Please sign in to comment.