1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fix download tooltip in interactive search

This commit is contained in:
Bogdan 2023-08-28 03:35:47 +03:00
parent 89f5595e64
commit feb3131ad4

View File

@ -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 {