diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-30 19:30:17 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-30 19:30:17 -0400 |
commit | 35105279d9cc55ccf331ec06de78077250b4cb5b (patch) | |
tree | af701830d1cdbe7a2f4c37674e3cc7c220e082fb /src/client/views/nodes/FormattedTextBox.tsx | |
parent | 7d4a4b25459b66568880528cd3776b6ff9cbcf9f (diff) |
Fixed various keys that hadn't been properly converted, which fixes zooming out on images/videos, etc.
Diffstat (limited to 'src/client/views/nodes/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/FormattedTextBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx index 9c6f95fc4..b95d327d2 100644 --- a/src/client/views/nodes/FormattedTextBox.tsx +++ b/src/client/views/nodes/FormattedTextBox.tsx @@ -28,7 +28,7 @@ const { menuBar } = require("prosemirror-menu"); // FormattedTextBox: Displays an editable plain text node that maps to a specified Key of a Document // -// HTML Markup: <FormattedTextBox Doc={Document's ID} FieldKey={Key's name + "Key"} +// HTML Markup: <FormattedTextBox Doc={Document's ID} FieldKey={Key's name} // // In Code, the node's HTML is specified in the document's parameterized structure as: // document.SetField(KeyStore.Layout, "<FormattedTextBox doc={doc} fieldKey={<KEYNAME>Key} />"); |