diff options
author | Thomas F. K. Jorna <[email protected]> | 2022-07-13 13:23:57 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-13 13:23:57 +0200 |
commit | 46f8c23da389b6777169248ed3e33f55e3dcbece (patch) | |
tree | 34abd3ac10a1112baaea318cf5e38eabe33acb0a /components/Sidebar/Backlinks.tsx | |
parent | 9474a254390b1e42488a1801fed5826b32a8030b (diff) | |
parent | 11111bb49889feb1b00e6814d9d81e3e23409d7c (diff) |
Merge pull request #247 from danhuynhdev/main
Diffstat (limited to 'components/Sidebar/Backlinks.tsx')
-rw-r--r-- | components/Sidebar/Backlinks.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/Sidebar/Backlinks.tsx b/components/Sidebar/Backlinks.tsx index 6a5dd00..0bbf415 100644 --- a/components/Sidebar/Backlinks.tsx +++ b/components/Sidebar/Backlinks.tsx @@ -17,6 +17,7 @@ export interface BacklinksProps { openContextMenu: any outline: boolean attachDir: string + useInheritance: boolean macros: { [key: string]: string } } @@ -36,6 +37,7 @@ export const Backlinks = (props: BacklinksProps) => { outline, macros, attachDir, + useInheritance, } = props const links = linksByNodeId[(previewNode as OrgRoamNode)?.id] ?? [] @@ -73,7 +75,7 @@ export const Backlinks = (props: BacklinksProps) => { openContextMenu={openContextMenu} outline={outline} noUnderline - {...{ attachDir, macros }} + {...{ attachDir, useInheritance, macros }} > {nodeById[link as string]?.title} </PreviewLink> |