changeset 4221:56588a4ba196

client: fix code-style (minor)
author Bernhard Reiter <bernhard@intevation.de>
date Fri, 16 Aug 2019 17:06:51 +0200
parents d8b736ba3f32
children c5cc6540940e
files client/src/components/sections/Sections.vue
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/sections/Sections.vue	Fri Aug 16 16:46:49 2019 +0200
+++ b/client/src/components/sections/Sections.vue	Fri Aug 16 17:06:51 2019 +0200
@@ -192,9 +192,10 @@
         });
     },
     deleteSection(section) {
-      HTTP.post("/imports/dsec",
+      HTTP.post(
+        "/imports/dsec",
         {
-          id: section.id.split(".")[1]*1
+          id: section.id.split(".")[1] * 1
         },
         {
           headers: { "X-Gemma-Auth": localStorage.getItem("token") }