Skip to content

Commit

Permalink
fixed wrong logic of (+) (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vas9ka authored Feb 4, 2024
1 parent 07ca072 commit 959f77f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fragmentarium/ui/info/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ function Joins({ fragment: { number, joins } }: Props): JSX.Element {
aria-label="envelope icon"
></i>
</>
) : index > 0 ? (
<>
<br />+{!join.isChecked && <sup>?</sup>}
</>
) : groupIndex > 0 ? (
<>
<br />
(+{!join.isChecked && <sup>?</sup>})
</>
) : index > 0 ? (
<>
<br />+{!join.isChecked && <sup>?</sup>}
</>
) : (
''
)}{' '}
Expand Down

0 comments on commit 959f77f

Please sign in to comment.