diff options
Diffstat (limited to 'uploader/static/js/populations.js')
-rw-r--r-- | uploader/static/js/populations.js | 5 |
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})`; } } ] |