File tree 1 file changed +3
-4
lines changed
src/main/frontend/src/components
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -104,15 +104,14 @@ class SeriesSaleItem extends React.PureComponent {
104
104
{ hasTransactionUrl ?
105
105
< a href = { sale . transactionUrl } id = { `series-sale-${ index } -transaction` } rel = "nofollow" >
106
106
{ `${ sale . firstPrice } \u00A0${ sale . firstCurrency } ` }
107
- { hasSecondPrice && `(${ sale . secondPrice } \u00A0${ sale . secondCurrency } )` }
107
+ { hasSecondPrice && ` (${ sale . secondPrice } \u00A0${ sale . secondCurrency } )` }
108
108
</ a >
109
109
: < React . Fragment >
110
110
{ `${ sale . firstPrice } \u00A0${ sale . firstCurrency } ` }
111
- { hasSecondPrice && `(${ sale . secondPrice } \u00A0${ sale . secondCurrency } )` }
111
+ { hasSecondPrice && ` (${ sale . secondPrice } \u00A0${ sale . secondCurrency } )` }
112
112
</ React . Fragment >
113
113
}
114
- { ' ' }
115
- { hasCondition && ( sale . condition !== 'CANCELLED' ? sale . condition : ( l10n [ 't_cancelled' ] || 'cancelled' ) ) }
114
+ { hasCondition && ` (${ sale . condition !== 'CANCELLED' ? sale . condition : ( l10n [ 't_cancelled' ] || 'cancelled' ) } )` }
116
115
</ li >
117
116
)
118
117
}
You can’t perform that action at this time.
0 commit comments