diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-29 00:53:11 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-29 00:53:11 -0400 |
| commit | 7b8924d203c6367edbf7e6ffbe2e8f2e6f24b859 (patch) | |
| tree | 7870fa5d896c9026ad7042afc283820a0d89ff6e /src/client/views/search | |
| parent | 2d37a7f6402aca311499fb1d61b05cca2487475f (diff) | |
added some link follow options to link Editor. Big overhaul of dockingView to make things undoable and cleaner
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index a24761195..d7a8ed404 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -492,7 +492,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc } render() { - const myDashboards = DocListCast(Cast(Doc.UserDoc().myDashboards, Doc, null).data); + const myDashboards = DocListCast(CurrentUserUtils.MyDashboards.data); return ( <div style={{ pointerEvents: "all" }} className="searchBox-container"> <div style={{ position: "absolute", left: 15, height: 32, alignItems: "center", display: "flex" }}> |
