changeset 2397:b95234702ee9

define stretch: omit call to sanitize. Should no longer be necessary since f6380bbdb853
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 27 Feb 2019 16:26:15 +0100
parents 6af41bb6656f
children 8481e6266691
files client/src/components/ImportStretches.vue
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/ImportStretches.vue	Wed Feb 27 16:20:22 2019 +0100
+++ b/client/src/components/ImportStretches.vue	Wed Feb 27 16:26:15 2019 +0100
@@ -346,8 +346,8 @@
       this.countryCode = properties.countries;
       this.source = properties["source_organization"];
       this.edit = true;
-      this.startrhm = this.sanitizeRHM(properties.lower);
-      this.endrhm = this.sanitizeRHM(properties.upper);
+      this.startrhm = properties.lower;
+      this.endrhm = properties.upper;
       this.idEditable = false;
     },
     deleteStretch(stretch) {