diff options
author | Brandon <brandon_li@brown.edu> | 2019-03-11 18:27:22 -0400 |
---|---|---|
committer | Brandon <brandon_li@brown.edu> | 2019-03-11 18:27:22 -0400 |
commit | c1d2a28123f4c9290fe8346730976687671f4042 (patch) | |
tree | 7d6ad3ca7c8216947ec7563963a55a5b9c39d848 /src/client/views/nodes/KeyValueBox.tsx | |
parent | c9ae6d447c151ffbc6691a095802489038d004c1 (diff) | |
parent | 618e66a5a070f1aac9224bd3f44b76a5ac314bfa (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into kvp
Diffstat (limited to 'src/client/views/nodes/KeyValueBox.tsx')
-rw-r--r-- | src/client/views/nodes/KeyValueBox.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/nodes/KeyValueBox.tsx b/src/client/views/nodes/KeyValueBox.tsx index 6192cd278..8025f00d6 100644 --- a/src/client/views/nodes/KeyValueBox.tsx +++ b/src/client/views/nodes/KeyValueBox.tsx @@ -1,14 +1,12 @@ -import { IReactionDisposer } from 'mobx'; import { observer } from "mobx-react"; -import { EditorView } from 'prosemirror-view'; import 'react-image-lightbox/style.css'; // This only needs to be imported once in your app import { Document } from '../../../fields/Document'; import { Opt, FieldWaiting, Field } from '../../../fields/Field'; import { KeyStore } from '../../../fields/KeyStore'; import { FieldView, FieldViewProps } from './FieldView'; -import { KeyValuePair } from "./KeyValuePair"; import "./KeyValueBox.scss"; +import { KeyValuePair } from "./KeyValuePair"; import React = require("react") import { Server } from "../../Server" import { EditableView } from "../EditableView"; @@ -16,6 +14,8 @@ import { CompileScript, ToField } from "../../util/Scripting"; import { useState } from 'react' import { Key } from '../../../fields/Key'; import { TextField } from '../../../fields/TextField'; +import { EditorView } from "prosemirror-view"; +import { IReactionDisposer } from "mobx"; @observer export class KeyValueBox extends React.Component<FieldViewProps> { |