diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-21 21:31:17 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-08-21 21:31:17 -0400 |
commit | e68b1cc60b2a8ffe55eea3e1d5266d6897dcdcb6 (patch) | |
tree | f5b1f5b4bb93672c0d18d675c4a7a19025ae43df /src/client/views/nodes/FormattedTextBox.tsx | |
parent | 30d55c5b91329d32a79b7135fff3566b2cd0e822 (diff) |
integrated slides
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 bcec6f7c3..a603676bb 100644 --- a/src/client/views/nodes/FormattedTextBox.tsx +++ b/src/client/views/nodes/FormattedTextBox.tsx @@ -465,7 +465,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe let documentId = StrCast(dataDoc[GoogleRef]); let exportState: GoogleApiClientUtils.ReadResult = {}; if (documentId) { - exportState = await GoogleApiClientUtils.Docs.read({ documentId }); + exportState = await GoogleApiClientUtils.Docs.read({ identifier: documentId }); } UndoManager.RunInBatch(() => handler(exportState, dataDoc), Pulls); } |