Skip to content

Commit e34415f

Browse files
authored
Update bookmarklet.js
1 parent fd0d77c commit e34415f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NZX/bookmarklet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
cell.innerHTML = '$' + (total_value - total_prev_value).toFixed(3) + " / " + ((total_value - total_prev_value) * 100 / total_prev_value).toFixed(3) + '%';
3131
cell = newrow.insertCell(-1);
3232
cell.setAttribute('class', 'text-right');
33-
cell.innerHTML = '$' + total_value;
33+
cell.innerHTML = '$' + total_value.toFixed(3);
3434
}

0 commit comments

Comments
 (0)