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 {