You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, with the new table row, the DataTables search helper initializes twice, despite only intending to initialize DataTables once:
If you load a GEDCOM file, one table stays with 1 result. The other table processes the GEDCOM file, so it is likely that DataTables may be initialized twice.
The text was updated successfully, but these errors were encountered:
When you initially load https://www.alexandraulsh.com/family-tree-map/ you see the following error in the browser console:
The error has no effect on application functionality and you can load a GEDCOM file successfully.
Per https://stackoverflow.com/a/35928281, this error is likely happening because we initialize a blank empty table with only a
thead
with six table headers (th
) and notd
elements.Adding a
tbody
with a table row and 6td
s does resolve the error:Unfortunately, with the new table row, the DataTables search helper initializes twice, despite only intending to initialize DataTables once:
If you load a GEDCOM file, one table stays with 1 result. The other table processes the GEDCOM file, so it is likely that DataTables may be initialized twice.
The text was updated successfully, but these errors were encountered: