diff options
author | bobzel <zzzman@gmail.com> | 2023-07-13 19:44:16 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-07-13 19:44:16 -0400 |
commit | 51d464e67b22939e7fd1422a7175ec9b58f390a7 (patch) | |
tree | 0006902a7778c7df292bb26284d67be860dd036d /src/fields/Doc.ts | |
parent | 8049464ee4f67a8eb5794346804290875463e48f (diff) |
getting shared links to show up when they are made remotely. fixing text to not generate network events when it's not selected
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index a1aea1563..5a8a6e4b6 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -346,7 +346,7 @@ export class Doc extends RefField { /// all of the raw acl's that have been set on this document. Use GetEffectiveAcl to determine the actual ACL of the doc for editing @observable public [DocAcl]: { [key: string]: symbol } = {}; @observable public [DocCss]: number = 0; // incrementer denoting a change to CSS layout - @observable public [DirectLinks]: Set<Doc> = new Set(); + @observable public [DirectLinks] = new ObservableSet<Doc>(); @observable public [Animation]: Opt<Doc>; @observable public [Highlight]: boolean = false; static __Anim(Doc: Doc) { |