diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-09 22:49:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-09 22:49:13 -0400 |
| commit | 9d177851ecaaea1a89ac9b7de1cec16368603eaa (patch) | |
| tree | 4000ee3540ebb84db85ffcfb8e09e43ec0fe92fc /src/client/util/HypothesisUtils.ts | |
| parent | 3ae79d3742030a255855d0c9c4ba8345f1cc73dd (diff) | |
added SelectionManager.Docs() to avoid having to dereference props to get at the seelcted Doc. this was causing a cycle in menu items when selected. fixed sizing of filterBox. enabled showing titles for VID,COL,and IMG in addition to RTF.
Diffstat (limited to 'src/client/util/HypothesisUtils.ts')
| -rw-r--r-- | src/client/util/HypothesisUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/HypothesisUtils.ts b/src/client/util/HypothesisUtils.ts index 635673025..e910a9118 100644 --- a/src/client/util/HypothesisUtils.ts +++ b/src/client/util/HypothesisUtils.ts @@ -29,7 +29,7 @@ export namespace Hypothesis { * Search for a WebDocument whose url field matches the given uri, return undefined if not found */ export const findWebDoc = async (uri: string) => { - const currentDoc = SelectionManager.Views().length && SelectionManager.Views()[0].props.Document; + const currentDoc = SelectionManager.Docs().lastElement(); if (currentDoc && Cast(currentDoc.data, WebField)?.url.href === uri) return currentDoc; // always check first whether the currently selected doc is the annotation's source, only use Search otherwise const results: Doc[] = []; |
