diff options
| author | bobzel <zzzman@gmail.com> | 2022-04-27 23:39:16 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-04-27 23:39:16 -0400 |
| commit | c6f2dc7f63b76ba0684e24aff8da138e00ae38ec (patch) | |
| tree | 240055eaade48bfa75fc91c97ac790baa1d22e46 /src/client/views/PropertiesDocBacklinksSelector.tsx | |
| parent | 2192b6cd994e71812d335a9902ef4e4ae296314b (diff) | |
unhide documents when viewing them from properties context/backlinks
Diffstat (limited to 'src/client/views/PropertiesDocBacklinksSelector.tsx')
| -rw-r--r-- | src/client/views/PropertiesDocBacklinksSelector.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/PropertiesDocBacklinksSelector.tsx b/src/client/views/PropertiesDocBacklinksSelector.tsx index 082492671..dce3e35e8 100644 --- a/src/client/views/PropertiesDocBacklinksSelector.tsx +++ b/src/client/views/PropertiesDocBacklinksSelector.tsx @@ -38,6 +38,7 @@ export class PropertiesDocBacklinksSelector extends React.Component<PropertiesDo const otherdoc = !other ? undefined : other.annotationOn && other.type !== DocumentType.RTF ? Cast(other.annotationOn, Doc, null) : other; if (otherdoc) { + otherdoc.hidden = false; this.props.addDocTab(Doc.IsPrototype(otherdoc) ? Doc.MakeDelegate(otherdoc) : otherdoc, "toggle:right"); } } |
