Skip to content

Commit

Permalink
Remove ploating points from file hex view
Browse files Browse the repository at this point in the history
  • Loading branch information
Slipn3r committed Apr 9, 2024
1 parent 0efe4b2 commit 04eb1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/util/flipperPlotter/hexbuffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 04eb1da

Please sign in to comment.