diff options
author | Frederick Muriuki Muriithi | 2025-03-10 12:44:49 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-10 12:44:49 -0500 |
commit | 1039335b9531acec744f5f445eee082d85522e4a (patch) | |
tree | c67650eabad3ecebd9a9a778ce6895ba98ba8054 /uploader/static/js/species.js | |
parent | 28c9447fb51fc764143b5add664e8f4b892a703d (diff) | |
download | gn-uploader-1039335b9531acec744f5f445eee082d85522e4a.tar.gz |
Change cell data from label element to plain text.
Diffstat (limited to 'uploader/static/js/species.js')
-rw-r--r-- | uploader/static/js/species.js | 5 |
1 files changed, 1 insertions, 4 deletions
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})`; } } ] |