diff client/src/components/sections/Sections.vue @ 4221:56588a4ba196

client: fix code-style (minor)
author Bernhard Reiter <bernhard@intevation.de>
date Fri, 16 Aug 2019 17:06:51 +0200
parents 01b846f4eb1e
children 2f2dbd3ebaea
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") }