diff options
author | bobzel <zzzman@gmail.com> | 2020-08-19 13:04:39 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-19 13:04:39 -0400 |
commit | 4058014af1a0fac01ca77b667f012696af6b5f18 (patch) | |
tree | 58c76aa4249b9dd32a4a64539aaf457b03b141eb /src/client/util/CurrentUserUtils.ts | |
parent | 930bf66fce5bd8f3a5f9cd52cd13ce96336cd183 (diff) |
fixed dragging aliases from properties panel. fixed dropdown button on schema nexsted collection
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 4385b164b..a14786b5b 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -46,7 +46,7 @@ export class CurrentUserUtils { if (doc["template-button-query"] === undefined) { const queryTemplate = Docs.Create.MulticolumnDocument( [ - Docs.Create.SearchDocument({ _viewType: CollectionViewType.Schema, ignoreClick: true, forceActive: true, lockedPosition: true, title: "query", _height: 200, system: true }), + Docs.Create.SearchDocument({ _viewType: CollectionViewType.Schema, ignoreClick: true, forceActive: true, _chromeStatus: "disabled", lockedPosition: true, title: "query", _height: 200, system: true }), Docs.Create.FreeformDocument([], { title: "data", _height: 100, system: true }) ], { _width: 400, _height: 300, title: "queryView", _chromeStatus: "disabled", _xMargin: 3, _yMargin: 3, hideFilterView: true, system: true } |