We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e93367 commit 839f504Copy full SHA for 839f504
src/main/frontend/src/components/SeriesSalesList.js
@@ -97,8 +97,8 @@ class SeriesSaleItem extends React.PureComponent {
97
{' '}
98
<ParticipantLink url={sale.sellerUrl} name={sale.sellerName} />
99
100
- { hasBuyer ?
101
- (l10n['t_sold_to'] || 'sold to')
+ { hasBuyer
+ ? (l10n['t_sold_to'] || 'sold to')
102
: (l10n['t_was_selling'] || 'was selling for')
103
}
104
@@ -121,8 +121,8 @@ class ParticipantLink extends React.PureComponent {
121
const { name, url } = this.props;
122
const hasUrl = !!url;
123
return (
124
- hasUrl ?
125
- <a href={url} rel="nofollow">{ name }</a>
+ hasUrl
+ ? <a href={url} rel="nofollow">{ name }</a>
126
: name
127
)
128
0 commit comments