changeset 1232:c24f934ffe43

removed accidentally duplicated method failed at merging...
author Markus Kottlaender <markus@intevation.de>
date Tue, 20 Nov 2018 09:14:17 +0100
parents 315e618a29fd
children c9c9c9cc61f6
files client/src/staging/Staging.vue
diffstat 1 files changed, 2 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/staging/Staging.vue	Tue Nov 20 09:11:46 2018 +0100
+++ b/client/src/staging/Staging.vue	Tue Nov 20 09:14:17 2018 +0100
@@ -83,15 +83,6 @@
 ];
 
 export default {
-  methods: {
-    zoomTo(coordinates) {
-      this.$store.commit("map/moveMap", {
-        coordinates: coordinates,
-        zoom: 17,
-        preventZoomOut: true
-      });
-    }
-  },
   computed: {
     ...mapState("application", ["searchQuery"]),
     filteredData() {
@@ -107,7 +98,7 @@
             .toString()
             .toLowerCase()
             .includes(this.searchQuery.toLowerCase());
-        })
+        });
         const statusFound = data.status
           .toLowerCase()
           .includes(this.searchQuery.toLowerCase());
@@ -137,7 +128,7 @@
         preventZoomOut: true
       });
     }
-  },
+  }
 };
 </script>