Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 2ee51c3

Browse files
staticoclaude
andcommitted
Fix DATA column alignment in packet list header
Add leading space to DATA header and encrypted packet info to align with other data columns that all have leading spaces. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8bfde67 commit 2ee51c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/components/PacketList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function PacketListHeader() {
6060
<Text color={theme.fg.muted}>{" "}</Text>
6161
<Text color={theme.fg.muted}>{"TO".padEnd(10)}</Text>
6262
<Text color={theme.fg.muted}>{"HOPS".padEnd(7)}</Text>
63-
<Text color={theme.fg.muted}>DATA</Text>
63+
<Text color={theme.fg.muted}> DATA</Text>
6464
</Text>
6565
</Box>
6666
);
@@ -404,7 +404,7 @@ function PacketRow({ packet, nodeStore, isSelected, useFahrenheit, meshViewConfi
404404
const encrypted = mp.payloadVariant.value as Uint8Array;
405405
return (
406406
<>
407-
<Text color={theme.data.channel}>ch:{mp.channel}</Text>
407+
<Text color={theme.data.channel}> ch:{mp.channel}</Text>
408408
<Text color={theme.fg.secondary}> {encrypted.length}B</Text>
409409
</>
410410
);

0 commit comments

Comments
 (0)