@@ -18,7 +18,7 @@ module.exports = Mn.View.extend({
1818 form : 'form' ,
1919 loader_content : '.loader-content' ,
2020 non_loader_content : '.non-loader-content' ,
21- error_info : '# error-info',
21+ le_error_info : '#le- error-info',
2222 domain_names : 'input[name="domain_names"]' ,
2323 buttons : '.modal-footer button' ,
2424 cancel : 'button.cancel' ,
@@ -68,7 +68,7 @@ module.exports = Mn.View.extend({
6868
6969 'click @ui.save' : function ( e ) {
7070 e . preventDefault ( ) ;
71- this . ui . error_info . hide ( ) ;
71+ this . ui . le_error_info . hide ( ) ;
7272
7373 if ( ! this . ui . form [ 0 ] . checkValidity ( ) ) {
7474 $ ( '<input type="submit">' ) . hide ( ) . appendTo ( this . ui . form ) . click ( ) . remove ( ) ;
@@ -189,11 +189,11 @@ module.exports = Mn.View.extend({
189189 . catch ( err => {
190190 try {
191191 const error_message = JSON . parse ( err . debug ) . debug . stack . join ( "\n" ) ;
192- this . ui . error_info [ 0 ] . innerHTML = `<p>${ err . message } </p><pre>${ error_message } </pre>` ;
192+ this . ui . le_error_info [ 0 ] . innerHTML = `<p>${ err . message } </p><pre>${ error_message } </pre>` ;
193193 } catch ( e ) {
194- this . ui . error_info [ 0 ] . innerHTML = `<p>${ err . message } </p>` ;
194+ this . ui . le_error_info [ 0 ] . innerHTML = `<p>${ err . message } </p>` ;
195195 }
196- this . ui . error_info . show ( ) ;
196+ this . ui . le_error_info . show ( ) ;
197197 this . ui . le_error_info [ 0 ] . scrollIntoView ( ) ;
198198 this . ui . loader_content . hide ( ) ;
199199 this . ui . non_loader_content . show ( ) ;
@@ -250,7 +250,7 @@ module.exports = Mn.View.extend({
250250 this . ui . dns_challenge_content . hide ( ) ;
251251 this . ui . credentials_file_content . hide ( ) ;
252252 this . ui . loader_content . hide ( ) ;
253- this . ui . error_info . hide ( ) ;
253+ this . ui . le_error_info . hide ( ) ;
254254 } ,
255255
256256 initialize : function ( options ) {
0 commit comments