@overmap-ai/core 1.0.63-form-submission-fix.2 → 1.0.63-form-submission-fix.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/overmap-core.js
CHANGED
|
@@ -5535,6 +5535,7 @@ class FormService extends BaseUploadService {
|
|
|
5535
5535
|
const attachmentPayload = {
|
|
5536
5536
|
offline_id: offlineFormRevisionAttachment.offline_id,
|
|
5537
5537
|
name: file.name,
|
|
5538
|
+
field_identifier: fieldIdentifier,
|
|
5538
5539
|
sha1
|
|
5539
5540
|
};
|
|
5540
5541
|
attachmentPayloads.push(attachmentPayload);
|
|
@@ -5890,7 +5891,8 @@ class FormSubmissionService extends BaseUploadService {
|
|
|
5890
5891
|
const attachmentPayload = {
|
|
5891
5892
|
offline_id: offlineFormSubmissionAttachment.offline_id,
|
|
5892
5893
|
name: file.name,
|
|
5893
|
-
sha1
|
|
5894
|
+
sha1,
|
|
5895
|
+
field_identifier: fieldIdentifier
|
|
5894
5896
|
};
|
|
5895
5897
|
attachmentPayloads.push(attachmentPayload);
|
|
5896
5898
|
}
|