mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
Fixed files that were using incorrect imports
(cherry picked from commit a3bb2f1c32fc1e0c49d0d1fe24c04940453f5431) (cherry picked from commit 9ebdc5364c69971fde5a0c854a2d46d6b027fd5f)
This commit is contained in:
@@ -104,7 +104,7 @@ class QualityProfile extends Component {
|
||||
return (
|
||||
<Label
|
||||
key={item.quality.id}
|
||||
kind={isCutoff ? kinds.INFO : kinds.default}
|
||||
kind={isCutoff ? kinds.INFO : kinds.DEFAULT}
|
||||
title={isCutoff ? translate('IsCutoffUpgradeUntilThisQualityIsMetOrExceeded') : null}
|
||||
>
|
||||
{item.quality.name}
|
||||
@@ -120,7 +120,7 @@ class QualityProfile extends Component {
|
||||
className={styles.tooltipLabel}
|
||||
anchor={
|
||||
<Label
|
||||
kind={isCutoff ? kinds.INFO : kinds.default}
|
||||
kind={isCutoff ? kinds.INFO : kinds.DEFAULT}
|
||||
title={isCutoff ? translate('IsCutoffCutoff') : null}
|
||||
>
|
||||
{item.name}
|
||||
@@ -133,7 +133,7 @@ class QualityProfile extends Component {
|
||||
return (
|
||||
<Label
|
||||
key={groupItem.quality.id}
|
||||
kind={isCutoff ? kinds.INFO : kinds.default}
|
||||
kind={isCutoff ? kinds.INFO : kinds.DEFAULT}
|
||||
title={isCutoff ? translate('IsCutoffCutoff') : null}
|
||||
>
|
||||
{groupItem.quality.name}
|
||||
|
||||
Reference in New Issue
Block a user