Pull request: 700 validate only enabled encryption form

Merge in DNS/adguard-home from 700-validate to master

Updates #700.

Squashed commit of the following:

commit 9cd9ff2d23352e00c7782cf68195809111c832e5
Author: Ildar Kamalov <ik@adguard.com>
Date:   Wed Apr 6 18:50:11 2022 +0300

    client: validate only enabled encryption form
This commit is contained in:
Ildar Kamalov 2022-04-06 19:27:24 +03:00 committed by Eugene Burkov
parent c70f941bf8
commit e9e0b7c4f9
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,9 @@ class Encryption extends Component {
handleFormChange = debounce((values) => { handleFormChange = debounce((values) => {
const submitValues = this.getSubmitValues(values); const submitValues = this.getSubmitValues(values);
this.props.validateTlsConfig(submitValues); if (submitValues.enabled) {
this.props.validateTlsConfig(submitValues);
}
}, DEBOUNCE_TIMEOUT); }, DEBOUNCE_TIMEOUT);
getInitialValues = (data) => { getInitialValues = (data) => {