diff options
author | sharkiecodes <lanyi_stroud@brown.edu> | 2025-04-30 19:50:21 -0400 |
---|---|---|
committer | sharkiecodes <lanyi_stroud@brown.edu> | 2025-04-30 19:50:21 -0400 |
commit | 37cdff4fb2383953f39cb0fee384a4779cd9fa7b (patch) | |
tree | 223a234b9eb7547daee8f025c9bafd866f383703 | |
parent | 438deda64bbba64a2771fb9369afa8ac323dbe79 (diff) |
fixes
-rw-r--r-- | src/client/views/nodes/scrapbook/ScrapbookBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/scrapbook/ScrapbookBox.tsx b/src/client/views/nodes/scrapbook/ScrapbookBox.tsx index 6d5ad031c..33761efc9 100644 --- a/src/client/views/nodes/scrapbook/ScrapbookBox.tsx +++ b/src/client/views/nodes/scrapbook/ScrapbookBox.tsx @@ -88,8 +88,8 @@ export class ScrapbookBox extends ViewBoxAnnotatableComponent<FieldViewProps>() internalImg.accepts_docType = DocumentType.IMG; internalImg.accepts_tagType = 'PERSON' //should i be writing fields on this doc? clarify diff between this and proto, original const placeholder5 = new Doc(); - placeholder5.proto = image; - placeholder5.original = image; + placeholder5.proto = internalImg; + placeholder5.original = internalImg; placeholder5._width = 50; placeholder5._height = 100; placeholder5.x = 0; |