diff options
author | bobzel <zzzman@gmail.com> | 2021-03-19 10:35:57 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-19 10:35:57 -0400 |
commit | e8ef90478cec13d45de0fe42e32a594e2630c47d (patch) | |
tree | 1b5cf8c16e94705bf9d9faa589e2e896dd97feef /src/client/views/nodes/KeyValueBox.tsx | |
parent | e2bc768ebde4ff78cee6e2a892f6a37e1d7e6abb (diff) |
fixing up some baseProto initialization. fixing stacking view with hidden docs.
Diffstat (limited to 'src/client/views/nodes/KeyValueBox.tsx')
-rw-r--r-- | src/client/views/nodes/KeyValueBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/KeyValueBox.tsx b/src/client/views/nodes/KeyValueBox.tsx index 383650e89..f27c2c6a7 100644 --- a/src/client/views/nodes/KeyValueBox.tsx +++ b/src/client/views/nodes/KeyValueBox.tsx @@ -163,7 +163,7 @@ export class KeyValueBox extends React.Component<FieldViewProps> { } getTemplate = async () => { - const parent = Docs.Create.StackingDocument([], { _width: 800, _height: 800, title: "Template" }); + const parent = Docs.Create.StackingDocument([], { _width: 800, _height: 800, title: "Template", _chromeStatus: "" }); parent._columnWidth = 100; for (const row of this.rows.filter(row => row.isChecked)) { await this.createTemplateField(parent, row); |