mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-23 02:37:13 +00:00
Merge pull request #2044 from int2001/lba_fix_1stload
Fixes an issue with shift-click and a js-error on 1st load of LBA
This commit is contained in:
@@ -366,8 +366,11 @@ function loadQSOTable(rows) {
|
||||
table.rows(createdRow).nodes().to$().data('qsoID', qso.qsoID);
|
||||
// table.row(createdRow).node().to$().attr("id", 'qsoID-' + qso.qsoID);
|
||||
}
|
||||
// table.draw();
|
||||
table.columns.adjust().draw();
|
||||
try {
|
||||
table.columns.adjust().draw();
|
||||
} catch (e) {
|
||||
table.draw();
|
||||
}
|
||||
$('[data-bs-toggle="tooltip"]').tooltip();
|
||||
|
||||
document.querySelectorAll('.row-check').forEach(checkbox => {
|
||||
|
||||
Reference in New Issue
Block a user