Skip to content

Commit 29d23f3

Browse files
fix: js lint
1 parent 4dccdeb commit 29d23f3

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

js/Conditions/ConditionsControl.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,15 @@ const ConditionsControl = ({ conditions, setConditions }) => {
271271
<p style={{color:'red'}}>
272272
{ __( 'Filter Condition limit reached', 'feedzy-rss-feeds' ) }
273273
<span>
274-
{/* translators: %1$s is the number of imports used, %2$s is the total number of imports allowed. */}
275-
{ __( '(' + sprintf( __( '%1$s/%2$s used', 'feedzy-rss-feeds' ), '1', '1' ) + ')' ) }
274+
{
275+
'(' +
276+
sprintf(
277+
// translators: %1$s is the number of imports used, %2$s is the total number of imports allowed.
278+
__( '%1$s/%2$s used', 'feedzy-rss-feeds'),
279+
'1',
280+
'1' ) +
281+
')'
282+
}
276283
</span>
277284
</p>
278285
</div>
@@ -285,7 +292,7 @@ const ConditionsControl = ({ conditions, setConditions }) => {
285292
<div className="button-container">
286293
<a
287294
href="https://themeisle.com/plugins/feedzy-rss-feeds/upgrade/?utm_source=wpadmin&utm_medium=post&utm_campaign=filterCondition&utm_content=feedzy-rss-feeds"
288-
target="_blank" rel="noopener "
295+
target="_blank" rel="noreferrer "
289296
className="button button-primary button-large"
290297
>
291298
{ __( 'Upgrade to PRO', 'feedzy-rss-feeds' ) }

0 commit comments

Comments
 (0)