Skip to content

Commit 2f7645b

Browse files
committed
chore: add missing spaces and braces.
Correction for cefbc0e commit.
1 parent 3c86827 commit 2f7645b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/frontend/src/components/SeriesSalesList.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,14 @@ class SeriesSaleItem extends React.PureComponent {
104104
{ hasTransactionUrl ?
105105
<a href={sale.transactionUrl} id={ `series-sale-${index}-transaction` } rel="nofollow">
106106
{ `${sale.firstPrice}\u00A0${sale.firstCurrency}` }
107-
{ hasSecondPrice && `(${sale.secondPrice}\u00A0${sale.secondCurrency})` }
107+
{ hasSecondPrice && ` (${sale.secondPrice}\u00A0${sale.secondCurrency})` }
108108
</a>
109109
: <React.Fragment>
110110
{ `${sale.firstPrice}\u00A0${sale.firstCurrency}` }
111-
{ hasSecondPrice && `(${sale.secondPrice}\u00A0${sale.secondCurrency})` }
111+
{ hasSecondPrice && ` (${sale.secondPrice}\u00A0${sale.secondCurrency})` }
112112
</React.Fragment>
113113
}
114-
{' '}
115-
{ hasCondition && (sale.condition !== 'CANCELLED' ? sale.condition : (l10n['t_cancelled'] || 'cancelled')) }
114+
{ hasCondition && ` (${sale.condition !== 'CANCELLED' ? sale.condition : (l10n['t_cancelled'] || 'cancelled')})` }
116115
</li>
117116
)
118117
}

0 commit comments

Comments
 (0)