mirror of
https://github.com/Radarr/Radarr
synced 2026-02-27 17:13:38 +01:00
Fix download tooltip in interactive search
This commit is contained in:
parent
89f5595e64
commit
feb3131ad4
1 changed files with 2 additions and 2 deletions
|
|
@ -63,12 +63,12 @@ function getDownloadTooltip(
|
|||
if (isGrabbing) {
|
||||
return '';
|
||||
} else if (isGrabbed) {
|
||||
return translate('AddToDownloadQueue');
|
||||
return translate('AddedToDownloadQueue');
|
||||
} else if (grabError) {
|
||||
return grabError;
|
||||
}
|
||||
|
||||
return translate('AddedToDownloadQueue');
|
||||
return translate('AddToDownloadQueue');
|
||||
}
|
||||
|
||||
interface InteractiveSearchRowProps {
|
||||
|
|
|
|||
Loading…
Reference in a new issue