# HG changeset patch # User Thomas Junk # Date 1561027459 -7200 # Node ID 9eab897f66b65d2a46852d4c393302b50f51cfea # Parent 3d2b8f542d892ab4f42f50fc019fda5efbff1ea2 import_soundingresult: form parameter for beamtype to boolean diff -r 3d2b8f542d89 -r 9eab897f66b6 client/src/components/importconfiguration/types/Soundingresults.vue --- a/client/src/components/importconfiguration/types/Soundingresults.vue Thu Jun 20 11:59:36 2019 +0200 +++ b/client/src/components/importconfiguration/types/Soundingresults.vue Thu Jun 20 12:44:19 2019 +0200 @@ -314,7 +314,10 @@ formData.append("depth-reference", this.depthReference); if (this.projection) formData.append("epsg", this.projection); if (this.beamType) - formData.append("single-beam", this.$options.BEAMTYPES.SINGLEBEAM); + formData.append( + "single-beam", + this.beamType === this.$options.BEAMTYPES.SINGLEBEAM + ); HTTP.post("/imports/sr", formData, { headers: {