Skip to content

Commit cb4e354

Browse files
committed
Fix formatting of lookup command response table
1 parent 7ca3932 commit cb4e354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/api/lookup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class LookupCommand implements Command {
9696
const messageBody = rows
9797
.map(
9898
([cid, ip, ckey]) =>
99-
`| ${cid} | ${ip.padEnd(15, ' ')} | ${ckey.padEnd(longestCkey, ' ')} |\n`
99+
`| ${cid.padEnd(10, ' ')} | ${ip.padEnd(15, ' ')} | ${ckey.padEnd(longestCkey, ' ')} |\n`
100100
)
101101
.join('');
102102
const messageFooter = '```';

0 commit comments

Comments
 (0)