From 04eb1daec54083f192133a2cad9f3d433f4234e0 Mon Sep 17 00:00:00 2001 From: Slipn3r <61992469+Slipn3r@users.noreply.github.com> Date: Tue, 9 Apr 2024 19:25:28 +0300 Subject: [PATCH] Remove ploating points from file hex view --- frontend/src/util/flipperPlotter/hexbuffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/util/flipperPlotter/hexbuffer.js b/frontend/src/util/flipperPlotter/hexbuffer.js index 89cb754..27c481e 100644 --- a/frontend/src/util/flipperPlotter/hexbuffer.js +++ b/frontend/src/util/flipperPlotter/hexbuffer.js @@ -11,7 +11,7 @@ */ function dec2hex (i, w = 2) { - return (i + 0x10000).toString(16).substr(-w).toUpperCase() + return (i + 0x10000).toString(16).substr(-w).toUpperCase().replaceAll('.', '') } export class Hexbuffer {