diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-19 18:50:21 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-19 18:50:21 -0400 |
commit | 26949f548619c93fc13bc0f3cfcec6cf9e72f3d6 (patch) | |
tree | 1358cc1b8fae5e02e1fc2ad7ef239c2f1b007b0c /src/mobile/ImageUpload.tsx | |
parent | bdf4ac9601e54bf8e2a3a8f988c97274d84ae8a4 (diff) |
final structural cleanp up of UserDocument for a while, hopefully
Diffstat (limited to 'src/mobile/ImageUpload.tsx')
-rw-r--r-- | src/mobile/ImageUpload.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mobile/ImageUpload.tsx b/src/mobile/ImageUpload.tsx index 5903a2ce9..295e82142 100644 --- a/src/mobile/ImageUpload.tsx +++ b/src/mobile/ImageUpload.tsx @@ -67,7 +67,7 @@ class Uploader extends React.Component { const field = await DocServer.GetRefField(res); let pending: Opt<Doc>; if (field instanceof Doc) { - pending = await Cast(field.optionalRightCollection, Doc); + pending = await Cast(field.rightSidebarCollection, Doc); } if (pending) { this.status = "has pending docs"; |