diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-04-21 09:30:59 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-04-21 09:30:59 +0530 |
commit | 62936fbe7186956e038d4e7bffbeafd7873bcd8c (patch) | |
tree | 6221036f874254e595b8293d299a8a4d57a95e9c /src/client/util/DragManager.ts | |
parent | cea978f8c3856c897efd92be4367ba31137e29d9 (diff) | |
parent | a9b6fba3a742f95815e2664770079bebd3b87d5f (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index 3e9a5b63a..3ea030171 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -19,7 +19,7 @@ import { DateField } from "../../new_fields/DateField"; import { DocumentView } from "../views/nodes/DocumentView"; import { UndoManager } from "./UndoManager"; -export type dropActionType = "place" | "alias" | "copy" | undefined; +export type dropActionType = "alias" | "copy" | "move" | undefined; // undefined = move export function SetupDrag( _reference: React.RefObject<HTMLElement>, docFunc: () => Doc | Promise<Doc> | undefined, |