diff options
author | bobzel <zzzman@gmail.com> | 2023-04-27 22:23:42 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-04-27 22:23:42 -0400 |
commit | 223dde9f35408c229a4da583083d10cbf81fc264 (patch) | |
tree | 7109a37d43a4a500d428dc94dd9fcd29f82e6e27 /src/client/views/nodes/KeyValueBox.tsx | |
parent | cc62b9949854f27bc19eb8d4224456094f0dbe13 (diff) |
fixed some undo issues with schema fill down. added bool cell view. added UI for showing/setting values on layout vs data docs.
Diffstat (limited to 'src/client/views/nodes/KeyValueBox.tsx')
-rw-r--r-- | src/client/views/nodes/KeyValueBox.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/nodes/KeyValueBox.tsx b/src/client/views/nodes/KeyValueBox.tsx index 57018fb93..11220c300 100644 --- a/src/client/views/nodes/KeyValueBox.tsx +++ b/src/client/views/nodes/KeyValueBox.tsx @@ -20,14 +20,12 @@ import { ImageBox } from './ImageBox'; import './KeyValueBox.scss'; import { KeyValuePair } from './KeyValuePair'; import React = require('react'); -import e = require('express'); export type KVPScript = { script: CompiledScript; type: 'computed' | 'script' | false; onDelegate: boolean; }; - @observer export class KeyValueBox extends React.Component<FieldViewProps> { public static LayoutString() { |