Fixed: (UI) Allow No Change in mass editor

This commit is contained in:
Bogdan 2023-07-22 03:05:32 +03:00
parent cc3667ed13
commit 0b7b12d1d9
4 changed files with 27 additions and 19 deletions

View file

@ -2,7 +2,7 @@ import PropTypes from 'prop-types';
import React from 'react';
import monitorNewItemsOptions from 'Utilities/Artist/monitorNewItemsOptions';
import translate from 'Utilities/String/translate';
import SelectInput from './SelectInput';
import EnhancedSelectInput from './EnhancedSelectInput';
function MonitorNewItemsSelectInput(props) {
const {
@ -31,7 +31,7 @@ function MonitorNewItemsSelectInput(props) {
}
return (
<SelectInput
<EnhancedSelectInput
values={values}
{...otherProps}
/>