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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user