From cfc9c86a66f54e6201821b3a6f51496f5ef461e8 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Fri, 13 Feb 2026 15:13:04 +0300 Subject: [PATCH] =?UTF-8?q?fix(index.html):=20replace=20hash=20symbol=20wi?= =?UTF-8?q?th=20block=20character=20in=20graph=20=20-=20change=20the=20cha?= =?UTF-8?q?racter=20used=20for=20bars=20from=20'#'=20to=20'=E2=96=88'=20fo?= =?UTF-8?q?r=20better=20visual=20representation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/index.html b/www/index.html index 8e2cd2c3..11b627d1 100644 --- a/www/index.html +++ b/www/index.html @@ -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);