We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 956b08b commit 7d9c0eaCopy full SHA for 7d9c0ea
1 file changed
app/views/registers/curation_genomics/_ambiguous_type_genome.html.erb
@@ -108,8 +108,8 @@
108
// The name is in the list, now check if any of the AAI values are too
109
// high and should be manually checked
110
var aai = $(`[data-type=aai][data-name=${name_id}][data-value]`);
111
- var max_aai = Math.max.apply(
112
- null, aai.map(function(){ reuturn $(this).data("value"); })
+ var max_aai = Math.max.apply(null,
+ aai.map(function(){ return $(this).data("value"); })
113
);
114
if (max_aai >= 90.0) {
115
aai.parents("td").addClass("bg-warning");
0 commit comments