WIP: blue overlay edge for cytoscape

This commit is contained in:
Cindy Chang
2024-08-19 11:16:56 +08:00
parent 975b8340b8
commit aebf25a271
2 changed files with 8 additions and 2 deletions

View File

@@ -24,6 +24,5 @@ const formatNumberWithCommas = (numberStr) => {
export default function numberLabel(num) {
let parts = num.toString().split('.');
parts[0] = formatNumberWithCommas(parts[0]);
console.log(parts[0]);
return parts.join('.');
}