diff options
author | bobzel <zzzman@gmail.com> | 2020-08-21 22:29:25 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-21 22:29:25 -0400 |
commit | 4e715d6261487602a32e7182d2bc89817bf76527 (patch) | |
tree | 5da74ba7d12049f3c2e39ea85f5f4da0314d0103 /src/client/views/DocComponent.tsx | |
parent | 24bed97cf02df1624c813ae7e78f8d0eff62e92e (diff) |
fixed stacking view to use autoHeight to avoid having scroll bars. changed some names (inactive instead of recentlyClosed). switched to untitled Tabs from Untitled Collection
Diffstat (limited to 'src/client/views/DocComponent.tsx')
-rw-r--r-- | src/client/views/DocComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx index 23ce71c4f..d621a792b 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -131,7 +131,7 @@ export function ViewBoxAnnotatableComponent<P extends ViewBoxAnnotatableProps, T const toRemove = value.filter(v => docs.includes(v)); if (toRemove.length !== 0) { - const recent = Cast(Doc.UserDoc().myRecentlyClosed, Doc) as Doc; + const recent = Cast(Doc.UserDoc().myInactiveDocs, Doc) as Doc; toRemove.forEach(doc => { Doc.RemoveDocFromList(targetDataDoc, this.props.fieldKey + "-annotations", doc); recent && Doc.AddDocToList(recent, "data", doc, undefined, true, true); |