diff options
-rw-r--r-- | uploader/static/js/populations.js | 5 | ||||
-rw-r--r-- | uploader/static/js/species.js | 5 |
2 files changed, 2 insertions, 8 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})`; } } ] diff --git a/uploader/static/js/species.js b/uploader/static/js/species.js index 0ab9c19..1f2aa3b 100644 --- a/uploader/static/js/species.js +++ b/uploader/static/js/species.js @@ -23,10 +23,7 @@ var speciesDataTable = (speciesdata) => { }, { data: (aspecies) => { - return `<label for="rdo_species_id_${aspecies.SpeciesId}" ` - + `class="control-label" style="font-weight: 1;">` - + `${aspecies.FullName} (${aspecies.SpeciesName})` - + `</label>`; + return `${aspecies.FullName} (${aspecies.SpeciesName})`; } } ] |