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

Fix: Update monitor options to be displayed in a more user friendly way

This commit is contained in:
bakerboy448
2020-11-15 17:29:11 -06:00
committed by Qstick
parent 616ae471d1
commit bdb61e263e
2 changed files with 8 additions and 5 deletions
@@ -1,10 +1,11 @@
import PropTypes from 'prop-types';
import React from 'react';
import translate from 'Utilities/String/translate';
import SelectInput from './SelectInput';
const monitorTypesOptions = [
{ key: 'true', value: 'True' },
{ key: 'false', value: 'False' }
{ key: 'true', value: translate('Yes') },
{ key: 'false', value: translate('No') }
];
function MovieMonitoredSelectInput(props) {