fix(index.html): replace hash symbol with block character in graph - change the character used for bars from '#' to '█' for better visual representation

This commit is contained in:
Sergey Krashevich
2026-02-13 15:13:04 +03:00
parent 8a083d6f53
commit cfc9c86a66
+1 -1
View File
@@ -188,7 +188,7 @@
for (let row = graphHeight; row >= 1; row--) {
let line = '|';
for (const bar of bars) {
line += bar >= row ? '#' : ' ';
line += bar >= row ? '' : ' ';
}
line += '|';
lines.push(line);