diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-22 22:23:39 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-22 22:23:39 -0400 |
| commit | 749873972fba8ed8d5b34b73b43947d6356b882e (patch) | |
| tree | 94d134e71f67645d7e5b4159a13097115f7d3be5 /src/client/views/collections/CollectionSubView.tsx | |
| parent | e97f4446446672bec1c8330b081f2a38d292f260 (diff) | |
added more caching for linkManager queries.
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 0dd033e47..f88ebd9ac 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -483,7 +483,7 @@ export function CollectionSubView<T, X>(schemaCtor: (doc: Doc) => T, moreProps?: if (text && !text.includes("https://")) { UndoManager.RunInBatch(() => this.addDocument(Docs.Create.TextDocument(text, { ...options, title: text.substring(0, 20), _width: 400, _height: 315 })), "drop"); } else { - alert("Document updloaded failed - possibly an unsupported file type.") + alert("Document updloaded failed - possibly an unsupported file type."); } } disposer(); |
