mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 02:18:28 -07:00
- client: Don't unregister field 'Upstream DNS servers' on rerender and allow input text continuously
Close #1752 Squashed commit of the following: commit 2f86ade71eadd648fe3e62d8f619d5f1419d6527 Author: ArtemBaskal <a.baskal@adguard.com> Date: Fri May 29 10:58:42 2020 +0300 - client: Don't unregister field 'Upstream DNS servers' on rerender and allow input text continuously
This commit is contained in:
parent
32d1f385ff
commit
83b9b70166
@ -5,7 +5,6 @@ import { Field, reduxForm, formValueSelector } from 'redux-form';
|
||||
import { Trans, withTranslation } from 'react-i18next';
|
||||
import flow from 'lodash/flow';
|
||||
import classnames from 'classnames';
|
||||
import { nanoid } from 'nanoid';
|
||||
|
||||
import Examples from './Examples';
|
||||
import { renderRadioField } from '../../../../helpers/form';
|
||||
@ -63,7 +62,7 @@ let Form = (props) => {
|
||||
<div className="row">
|
||||
{INPUT_FIELDS.map(({
|
||||
name, component, type, className, placeholder, getTitle, subtitle, disabled, value,
|
||||
}) => <div className="col-12 mb-4" key={nanoid()}>
|
||||
}) => <div className="col-12 mb-4" key={placeholder}>
|
||||
{typeof getTitle === 'function' && getTitle()}
|
||||
<Field
|
||||
id={name}
|
||||
|
Loading…
Reference in New Issue
Block a user