Merge pull request #1677 from jc21/fixes-custom-certificate-modal

Fixes custom certificate upload modal
This commit is contained in:
jc21
2021-12-27 11:02:16 +10:00
committed by GitHub

View File

@@ -278,10 +278,12 @@ module.exports = Mn.View.extend({
this.ui.credentials_file_content.hide();
this.ui.loader_content.hide();
this.ui.le_error_info.hide();
if (this.ui.domain_names[0]) {
const domainNames = this.ui.domain_names[0].value.split(',');
if (!domainNames || domainNames.length === 0 || (domainNames.length === 1 && domainNames[0] === "")) {
this.ui.test_domains_button.prop('disabled', true);
}
}
},
initialize: function (options) {