@overmap-ai/core 1.0.71-fields.10 → 1.0.71-fields.11
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
|
@@ -5697,9 +5697,7 @@ class FormService extends BaseUploadService {
|
|
|
5697
5697
|
method: HttpMethod.POST,
|
|
5698
5698
|
url: "/forms/",
|
|
5699
5699
|
payload: {
|
|
5700
|
-
|
|
5701
|
-
offline_id: offlineForm.offline_id,
|
|
5702
|
-
submitted_at: offlineForm.submitted_at,
|
|
5700
|
+
...offlineForm,
|
|
5703
5701
|
initial_revision: {
|
|
5704
5702
|
offline_id: offlineFormRevision.offline_id,
|
|
5705
5703
|
submitted_at: offlineFormRevision.submitted_at,
|
|
@@ -5708,10 +5706,7 @@ class FormService extends BaseUploadService {
|
|
|
5708
5706
|
fields: offlineFormRevision.fields
|
|
5709
5707
|
}
|
|
5710
5708
|
},
|
|
5711
|
-
blockers: [
|
|
5712
|
-
...payload.project ? [payload.project.toString()] : [],
|
|
5713
|
-
...payload.organization ? [payload.organization.toString()] : []
|
|
5714
|
-
],
|
|
5709
|
+
blockers: [],
|
|
5715
5710
|
blocks: [offlineForm.offline_id, offlineFormRevision.offline_id]
|
|
5716
5711
|
});
|
|
5717
5712
|
void formPromise.catch((e) => {
|