aboutsummaryrefslogtreecommitdiff
path: root/uploader/static/js/populations.js
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-03-10 12:44:49 -0500
committerFrederick Muriuki Muriithi2025-03-10 12:44:49 -0500
commit1039335b9531acec744f5f445eee082d85522e4a (patch)
treec67650eabad3ecebd9a9a778ce6895ba98ba8054 /uploader/static/js/populations.js
parent28c9447fb51fc764143b5add664e8f4b892a703d (diff)
downloadgn-uploader-1039335b9531acec744f5f445eee082d85522e4a.tar.gz
Change cell data from label element to plain text.
Diffstat (limited to 'uploader/static/js/populations.js')
-rw-r--r--uploader/static/js/populations.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/uploader/static/js/populations.js b/uploader/static/js/populations.js
index d4980db..5c1f848 100644
--- a/uploader/static/js/populations.js
+++ b/uploader/static/js/populations.js
@@ -24,10 +24,7 @@ var populationDataTable = (populationdata) => {
},
{
data: (apopulation) => {
- return `<label for="rdo_population_id_${apopulation.InbredSetId}" `
- + `class="control-label" style="font-weight: 1;">`
- + `${apopulation.FullName} (${apopulation.InbredSetName})`
- + `</label>`;
+ return `${apopulation.FullName} (${apopulation.InbredSetName})`;
}
}
]