Browse Source

Adding label to role selector

Andrej Studen 1 year ago
parent
commit
c2dbbb07db
1 changed files with 2 additions and 2 deletions
  1. 2 2
      web/crf/crfRoleSelector.js

+ 2 - 2
web/crf/crfRoleSelector.js

@@ -50,10 +50,10 @@ function(cb=null){
    let table=crfHTML.createTable('formDiv');
    let row=table.insertRow();
    let cell=row.insertCell();
-   this.roleSelect=crfHTML.createSelect(options,null,cell);
+   this.roleLabel=crfHTML.createTextNode('Please select role and site',null,cell);
    row=table.insertRow();
    cell=row.insertCell();
-   this.roleLabel=crfHTML.createTextNode('Please select option',null,cell);
+   this.roleSelect=crfHTML.createSelect(options,null,cell);
    let that=this;
    this.roleSelect.onchange=function(){that.onChange(cb);}
 }