Browse Source

Update binary data canvas

Fix first byte not being displayed correctly.
pull/1/head
TheoryOfNekomata 11 months ago
parent
commit
8ab40736f5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      packages/web-kitchensink-reactnext/src/packages/react-binary-data-canvas/index.tsx

+ 1
- 1
packages/web-kitchensink-reactnext/src/packages/react-binary-data-canvas/index.tsx View File

@@ -94,7 +94,7 @@ export const BinaryDataCanvas = React.forwardRef<BinaryDataCanvasDerivedElement,
{
bytesGrouped.map((line: number[], l) => (
<React.Fragment key={l}>
{l > 0 && '\n'}
{'\n'}
<span
className={lineClassName}
>


Loading…
Cancel
Save