diff options
| author | bob <bcz@cs.brown.edu> | 2019-08-23 17:41:11 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-08-23 17:41:11 -0400 |
| commit | 9fb7008b5cce6fd8973ec48cf6b067f3c4cfd363 (patch) | |
| tree | a3d4e221e7cb6ce91f27b04513269e4d4634adfb /src/client/views/DocumentDecorations.tsx | |
| parent | 538187907421057212eca1eadbe07c8b79705d1d (diff) | |
fixed documents disappearing without an x/y, fixed dropping something onto textbox making it a template, fixed treeview to show minimized documents.
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 2c5940467..ee2a57bd3 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -1,7 +1,7 @@ import { library, IconProp } from '@fortawesome/fontawesome-svg-core'; import { faLink, faTag, faTimes, faArrowAltCircleDown, faArrowAltCircleUp, faCheckCircle, faStopCircle, faCloudUploadAlt, faSyncAlt, faShare } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { action, computed, observable, reaction, runInAction } from "mobx"; +import { action, computed, observable, reaction, runInAction, trace } from "mobx"; import { observer } from "mobx-react"; import { Doc } from "../../new_fields/Doc"; import { List } from "../../new_fields/List"; |
