# HG changeset patch # User Markus Kottlaender # Date 1542701657 -3600 # Node ID c24f934ffe4357f8523417c5218a07512b7973e6 # Parent 315e618a29fdbc0ed26eb05618426bd12e455fe0 removed accidentally duplicated method failed at merging... diff -r 315e618a29fd -r c24f934ffe43 client/src/staging/Staging.vue --- 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 }); } - }, + } };