Skip to content

Commit

Permalink
fix(impliedRelations): 🐛 Default settings should be the same as curre…
Browse files Browse the repository at this point in the history
…nt BC behaviour
  • Loading branch information
SkepticMystic committed Jan 19, 2022
1 parent edacff4 commit 6fe275a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3637,7 +3637,7 @@ const DEFAULT_SETTINGS = {
wikilinkIndex: true,
impliedRelations: {
siblingIdentity: false,
sameParentIsSibling: false,
sameParentIsSibling: true,
siblingsSiblingIsSibling: false,
parentsSiblingsIsParents: false,
parentsParentsIsParent: false,
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export const DEFAULT_SETTINGS: BCSettings = {
wikilinkIndex: true,
impliedRelations: {
siblingIdentity: false,
sameParentIsSibling: false,
sameParentIsSibling: true,
siblingsSiblingIsSibling: false,
parentsSiblingsIsParents: false,
parentsParentsIsParent: false,
Expand Down

0 comments on commit 6fe275a

Please sign in to comment.