Fix hexdump alignment issue

This commit is contained in:
Jordan Goulder 2025-01-31 21:25:35 -05:00
parent 68a0c578d1
commit 67c93111e6

View File

@ -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('')
}