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

Add back min availability to bulk movie edit

This commit is contained in:
Qstick
2023-05-14 07:50:55 -05:00
parent b32d168742
commit 976712d6d7
2 changed files with 35 additions and 5 deletions
@@ -1,7 +1,7 @@
import PropTypes from 'prop-types';
import React from 'react';
import translate from 'Utilities/String/translate';
import SelectInput from './SelectInput';
import EnhancedSelectInput from './EnhancedSelectInput';
const availabilityOptions = [
{ key: 'announced', value: translate('Announced') },
@@ -34,7 +34,7 @@ function AvailabilitySelectInput(props) {
}
return (
<SelectInput
<EnhancedSelectInput
{...props}
values={values}
/>