We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0d77c commit e34415fCopy full SHA for e34415f
NZX/bookmarklet.js
@@ -30,5 +30,5 @@
30
cell.innerHTML = '$' + (total_value - total_prev_value).toFixed(3) + " / " + ((total_value - total_prev_value) * 100 / total_prev_value).toFixed(3) + '%';
31
cell = newrow.insertCell(-1);
32
cell.setAttribute('class', 'text-right');
33
- cell.innerHTML = '$' + total_value;
+ cell.innerHTML = '$' + total_value.toFixed(3);
34
}
0 commit comments