diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-05 00:34:19 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-05 00:34:19 -0400 |
commit | aedd283fb9f9eff4145e27658bc6647982256032 (patch) | |
tree | 7223b2c74322615e323b00cb3fe7a8974d2d9a06 /src/client/views/nodes/ImageBox.tsx | |
parent | 74e4909a77ac143ecdb1d038ad182aae9c710129 (diff) |
beginning implementation of key value tags for all imported documents
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index 06bf65f73..88c122b61 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -213,7 +213,9 @@ export class ImageBox extends DocComponent<FieldViewProps, ImageDocument>(ImageD }), 0); } }) - .catch((err: any) => console.log(err)); + .catch((err: any) => { + console.log(err); + }); } render() { |