1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Remove PreDB from MovieStatusType

Fixes #5002
This commit is contained in:
Qstick
2021-12-20 21:25:07 -06:00
parent b2195148a2
commit 4d2a311e40
7 changed files with 118 additions and 13 deletions
@@ -6,8 +6,7 @@ import SelectInput from './SelectInput';
const availabilityOptions = [
{ key: 'announced', value: translate('Announced') },
{ key: 'inCinemas', value: translate('InCinemas') },
{ key: 'released', value: translate('Released') },
{ key: 'preDB', value: translate('PreDB') }
{ key: 'released', value: translate('Released') }
];
function AvailabilitySelectInput(props) {