Skip to content
Snippets Groups Projects
Commit ee742fba authored by Empress Sela's avatar Empress Sela
Browse files

Use extended missing table attributes in family tree

parent 8f1828d1
Branches
Tags
1 merge request!7316Show more missing ancestors in family tree
......@@ -274,8 +274,8 @@ globalThis.buildFamilyTree = function(slaves, filterID) {
let missing = V.missingTable[mom];
charList.push({
ID: mom,
mother: 0,
father: 0,
mother: missing.mother,
father: missing.father,
is_mother: true,
dick: missing.dick,
vagina: missing.vagina,
......@@ -309,8 +309,8 @@ globalThis.buildFamilyTree = function(slaves, filterID) {
let missing = V.missingTable[dad];
charList.push({
ID: dad,
mother: 0,
father: 0,
mother: missing.mother,
father: missing.father,
is_father: true,
dick: missing.dick,
vagina: missing.vagina,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment