File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ export interface SendFormData {
105105
106106export class Dom {
107107 private static readonly errorText : Text = document . querySelector ( 'h2.error' ) ! . appendChild ( document . createTextNode ( '' ) ) ;
108-
109108 static reportError ( error ?: any ) : void {
110109 console . error ( error ) ;
111110 const errorMessage = `Error: ${ error } ` ;
@@ -117,8 +116,8 @@ export class Dom {
117116
118117 static readonly serialForm = new DomForm < ConnectionFormData > ( document . querySelector ( 'form[name=serial]' ) ! ) ;
119118 static readonly sendForm = new DomForm < SendFormData > ( document . querySelector ( 'form[name=send]' ) ! ) ;
120- private static readonly functionCodeList = document . getElementById ( 'functionCodeList' ) ! ;
121119
120+ private static readonly functionCodeList = document . getElementById ( 'functionCodeList' ) ! ;
122121 static addFunctionCodeListOption ( code : string , description : string ) : void {
123122 const option = document . createElement ( 'option' ) ;
124123 option . value = code ;
You can’t perform that action at this time.
0 commit comments