@@ -276,7 +276,6 @@ function isDanteConcept(fieldValue) {
276276
277277async function performEditTransaction ( geometryIds , changeMap , fieldConfiguration , authorizationString ) {
278278 const result = await performTransaction (
279- geometryIds ,
280279 getEditRequestXml ( geometryIds , changeMap , fieldConfiguration . edit_wfs_feature_type . ValueText ) ,
281280 fieldConfiguration . edit_wfs_url . ValueText ,
282281 authorizationString
@@ -289,7 +288,6 @@ async function performEditTransaction(geometryIds, changeMap, fieldConfiguration
289288
290289async function performDeleteTransaction ( geometryIds , fieldConfiguration , authorizationString ) {
291290 const result = await performTransaction (
292- geometryIds ,
293291 getDeleteRequestXml ( fieldConfiguration . edit_wfs_feature_type . ValueText ) ,
294292 fieldConfiguration . edit_wfs_url . ValueText ,
295293 authorizationString
@@ -303,6 +301,8 @@ async function performDeleteTransaction(geometryIds, fieldConfiguration, authori
303301async function performTransaction ( requestXml , wfsUrl , authorizationString ) {
304302 const transactionUrl = wfsUrl + '?service=WFS&version=1.1.0&request=Transaction' ;
305303
304+ throwErrorToFrontend ( 'Request XML' , JSON . stringify ( requestXml ) ) ;
305+
306306 try {
307307 const response = await fetch ( transactionUrl , {
308308 method : 'POST' ,
0 commit comments