diff options
author | bobzel <zzzman@gmail.com> | 2021-08-30 10:23:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-08-30 10:23:13 -0400 |
commit | 962a1a3f1ae9a55c5aea630d3252cecb740fa15c (patch) | |
tree | 9f5f234786af112a475ea5be962e2e2907fb2dfe /src/client/util/SelectionManager.ts | |
parent | 584926578067f023b52c7754e65bc289f2a745e6 (diff) | |
parent | 2d2e027f11253834a337680bbfd1ac549bb2a1f0 (diff) |
merged with master - fixed warnings and errors.
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index dbcc49f3d..0cfaebbf2 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -1,10 +1,10 @@ import { action, observable, ObservableMap } from "mobx"; import { computedFn } from "mobx-utils"; import { Doc, Opt } from "../../fields/Doc"; +import { DocumentType } from "../documents/DocumentTypes"; import { CollectionSchemaView } from "../views/collections/collectionSchema/CollectionSchemaView"; import { CollectionViewType } from "../views/collections/CollectionView"; import { DocumentView } from "../views/nodes/DocumentView"; -import { DocumentType } from "../documents/DocumentTypes"; export namespace SelectionManager { |