|
|
@@ -187,7 +187,7 @@ |
|
|
const n_length = data['child_types'].length |
|
|
const n_length = data['child_types'].length |
|
|
let html='' |
|
|
let html='' |
|
|
for (let i=0;i<n_length;i++){ |
|
|
for (let i=0;i<n_length;i++){ |
|
|
html += `<option value="${data['child_types'][i].id}">"${data['child_types'][i].value}"</option>`; |
|
|
|
|
|
|
|
|
html += `<option value="${data['child_types'][i].id}">${data['child_types'][i].value}</option>`; |
|
|
} |
|
|
} |
|
|
document.getElementById("benchmark_child_types_id").innerHTML=html; |
|
|
document.getElementById("benchmark_child_types_id").innerHTML=html; |
|
|
}) |
|
|
}) |
|
|
|