Removed dots from info column and removed pkts from packets column (#7598)

This commit is contained in:
Matteo Biscosi 2023-06-28 13:23:42 +00:00
parent 26fdd5133e
commit 86747e48e5
2 changed files with 4 additions and 2 deletions

View file

@ -146,7 +146,7 @@ local function dt_format_info(info)
return ({
title = info,
label = shortenString(info, 32)
label = info
})
end
@ -433,6 +433,8 @@ local function dt_format_pkts(packets)
pkts = tonumber(packets)
end
tprint(pkts)
return pkts
end