changeset 2005:d8874f78fd7b

attributes temporary fixed
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 24 Jan 2019 16:47:46 +0100
parents e19ac08214a1
children 35acb7f9ae0c d6b68bf689cc 1324dd12af9e
files client/src/components/importschedule/Importscheduledetail.vue
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importschedule/Importscheduledetail.vue	Thu Jan 24 16:44:28 2019 +0100
+++ b/client/src/components/importschedule/Importscheduledetail.vue	Thu Jan 24 16:47:46 2019 +0100
@@ -732,11 +732,11 @@
         )
           return;
         const values = {
-          los: this.LOS * 1,
-          depth: this.depth * 1
+          los: this.LOS + "",
+          depth: this.depth + ""
         };
-        values["min-width"] = this.minWidth * 1;
-        values["max-width"] = this.maxWidth * 1;
+        values["min-width"] = this.minWidth + "";
+        values["max-width"] = this.maxWidth + "";
         values["source-organization"] = this.sourceOrganization;
         addAttribute(data, values);
       }