aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/static')
-rw-r--r--qc_app/static/js/select_platform.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/qc_app/static/js/select_platform.js b/qc_app/static/js/select_platform.js
index d78877e..456cfcf 100644
--- a/qc_app/static/js/select_platform.js
+++ b/qc_app/static/js/select_platform.js
@@ -10,7 +10,7 @@ function radio_column(chip) {
}
function setup_genechips(genechip_data) {
- columns = ["GeneChipName", "Name", "GeoPlatform", "GO_tree_value"]
+ columns = ["GeneChipId", "GeneChipName"]
submit_button = document.querySelector(
"#select-platform-form input[type='submit']");
elt = document.getElementById(
@@ -19,7 +19,7 @@ function setup_genechips(genechip_data) {
if((genechip_data === undefined) || genechip_data.length === 0) {
row = document.createElement("tr");
col = document.createElement("td");
- col.setAttribute("colspan", "5");
+ col.setAttribute("colspan", "3");
text = document.createTextNode("No chips found for selected species");
col.appendChild(text);
row.appendChild(col);