Skip to content

Commit

Permalink
fix: Add missing dir field based on mermaid collapse_edges change
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed Apr 8, 2024
1 parent b821f84 commit e3c6532
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/modals/ImpliedRelationshipsSettingsModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Me",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "same" },
attr: { explicit: false, field: "same", dir: "same" },
},
]),
);
Expand All @@ -97,14 +97,14 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "B",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "up" },
attr: { explicit: true, field: "up", dir: "up" },
},
{
source_id: "B",
source_attr: { resolved: true },
target_attr: { resolved: true },
target_id: "A",
attr: { explicit: false, field: "down" },
attr: { explicit: false, field: "down", dir: "down" },
},
],
{ direction: "LR" },
Expand Down Expand Up @@ -134,21 +134,21 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Dad",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "up" },
attr: { explicit: true, field: "up", dir: "up" },
},
{
source_id: "Dad",
target_id: "Sister",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "down" },
attr: { explicit: true, field: "down", dir: "down" },
},
{
source_id: "Me",
target_id: "Sister",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "same" },
attr: { explicit: false, field: "same", dir: "same" },
},
]),
);
Expand Down Expand Up @@ -176,21 +176,21 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Sister",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "same" },
attr: { explicit: true, field: "same", dir: "same" },
},
{
source_id: "Sister",
target_id: "Brother",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "same" },
attr: { explicit: true, field: "same", dir: "same" },
},
{
source_id: "Me",
target_id: "Brother",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "same" },
attr: { explicit: false, field: "same", dir: "same" },
},
]),
);
Expand Down Expand Up @@ -218,21 +218,21 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Sister",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "same" },
attr: { explicit: true, field: "same", dir: "same" },
},
{
source_id: "Sister",
target_id: "Dad",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "up" },
attr: { explicit: true, field: "up", dir: "up" },
},
{
source_id: "Me",
target_id: "Dad",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "up" },
attr: { explicit: false, field: "up", dir: "up" },
},
]),
);
Expand Down Expand Up @@ -260,21 +260,21 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Dad",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "up" },
attr: { explicit: true, field: "up", dir: "up" },
},
{
source_id: "Dad",
target_id: "Uncle",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "same" },
attr: { explicit: true, field: "same", dir: "same" },
},
{
source_id: "Me",
target_id: "Uncle",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "up" },
attr: { explicit: false, field: "up", dir: "up" },
},
]),
);
Expand All @@ -300,28 +300,28 @@ For each relationship, choose the number of _rounds_ to run. Zero (0) rounds dis
target_id: "Dad",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "up" },
attr: { explicit: true, field: "up", dir: "up" },
},
{
source_id: "Dad",
target_id: "Uncle",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "same" },
attr: { explicit: true, field: "same", dir: "same" },
},
{
source_id: "Uncle",
target_id: "Cousin",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: true, field: "down" },
attr: { explicit: true, field: "down", dir: "down" },
},
{
source_id: "Me",
target_id: "Cousin",
source_attr: { resolved: true },
target_attr: { resolved: true },
attr: { explicit: false, field: "same" },
attr: { explicit: false, field: "same", dir: "same" },
},
]),
);
Expand Down

0 comments on commit e3c6532

Please sign in to comment.