Fix hexdump alignment issue
This commit is contained in:
parent
68a0c578d1
commit
67c93111e6
@ -44,8 +44,8 @@ const hexDump = computed(() => {
|
||||
cnt += 1
|
||||
}
|
||||
|
||||
while (cnt > 0 && cnt < 8) {
|
||||
if (cnt === 7) {
|
||||
while (cnt > 0 && cnt <= 8) {
|
||||
if (cnt === 8) {
|
||||
values.push('')
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user