changeset 3570:2ec49a2dca83

Fixed projection selection to back end for SR import.
author Sascha Wilde <wilde@intevation.de>
date Mon, 03 Jun 2019 12:22:26 +0200
parents 2d230dfbf233
children 9e296d686f16
files client/src/components/importconfiguration/types/Soundingresults.vue
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importconfiguration/types/Soundingresults.vue	Mon Jun 03 11:23:44 2019 +0200
+++ b/client/src/components/importconfiguration/types/Soundingresults.vue	Mon Jun 03 12:22:26 2019 +0200
@@ -284,7 +284,7 @@
         formData.append("date", this.importDate.split("T")[0]);
       if (this.depthReference)
         formData.append("depth-reference", this.depthReference);
-      if (this.projection) formData.append("", this.projection);
+      if (this.projection) formData.append("epsg", this.projection);
 
       HTTP.post("/imports/sr", formData, {
         headers: {