Skip to content

Commit ed9b44f

Browse files
committed
Always show register in results view
1 parent c0cf72f commit ed9b44f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

media/main.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ class View {
6060
td.innerHTML = item.details;
6161
tr.appendChild(td);
6262
}
63+
64+
td = document.createElement('td');
65+
td.innerHTML = item.register;
66+
tr.appendChild(td);
67+
6368
results.appendChild(tr);
6469
});
6570
}

0 commit comments

Comments
 (0)