diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-25 21:28:37 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-25 21:28:37 -0500 |
| commit | 97cdf8bd071bd3187e0db0e22e18ce705f30d57f (patch) | |
| tree | f93dda370f398be3cb644b7bf76a9a6ec59bede9 /src/client/views | |
| parent | f6ed4c2eb2600282d2f9a31433c5fc24d2928fab (diff) | |
field info start
Diffstat (limited to 'src/client/views')
| -rw-r--r-- | src/client/views/Main.tsx | 10 | ||||
| -rw-r--r-- | src/client/views/nodes/LabelBox.tsx | 2 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 92f6ae028..5063c6f6b 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -1,12 +1,10 @@ -import { MainView } from "./MainView"; -import { Docs } from "../documents/Documents"; -import { CurrentUserUtils } from "../util/CurrentUserUtils"; -import * as ReactDOM from 'react-dom'; import * as React from 'react'; -import { DocServer } from "../DocServer"; +import * as ReactDOM from 'react-dom'; import { AssignAllExtensions } from "../../extensions/General/Extensions"; -import { Networking } from "../Network"; +import { Docs } from "../documents/Documents"; +import { CurrentUserUtils } from "../util/CurrentUserUtils"; import { CollectionView } from "./collections/CollectionView"; +import { MainView } from "./MainView"; AssignAllExtensions(); diff --git a/src/client/views/nodes/LabelBox.tsx b/src/client/views/nodes/LabelBox.tsx index 87d5b07a2..3d4429a55 100644 --- a/src/client/views/nodes/LabelBox.tsx +++ b/src/client/views/nodes/LabelBox.tsx @@ -59,7 +59,7 @@ export class LabelBox extends ViewBoxBaseComponent<FieldViewProps, LabelDocument } @observable _mouseOver = false; - @computed get backColor() { return this.clicked || this._mouseOver ? StrCast(this.layoutDoc.hovercolor) : "unset"; } + @computed get backColor() { return this.clicked || this._mouseOver ? StrCast(this.layoutDoc._hovercolor) : "unset"; } @observable clicked = false; // (!missingParams || !missingParams.length ? "" : "(" + missingParams.map(m => m + ":").join(" ") + ")") |
