Skip to content

Commit

Permalink
Fix sorting tables
Browse files Browse the repository at this point in the history
  • Loading branch information
vladsavelyev committed Nov 4, 2023
1 parent 4a52b2f commit b88eb1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multiqc/templates/default/assets/js/multiqc_tables.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ $(function () {
let val = node.getAttribute("val");
let floatVal = parseFloat(val);
if (!isNaN(floatVal)) {
return floatVal;
return val; // expected to return a string
}
return val;
}
Expand Down

0 comments on commit b88eb1b

Please sign in to comment.