Fixes custom certificate upload modal

This commit is contained in:
chaptergy 2021-12-23 12:23:30 +01:00
parent 6392df36c3
commit ac23c66659

View File

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