changeset 1294:b9fd587d8ea0

removed console.log
author Markus Kottlaender <markus@intevation.de>
date Thu, 22 Nov 2018 14:05:30 +0100
parents 5aeda02c51b9
children cf041cf30418
files client/src/components/Sidebar.vue client/src/components/map/toolbar/Cuttool.vue
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/Sidebar.vue	Thu Nov 22 13:37:29 2018 +0100
+++ b/client/src/components/Sidebar.vue	Thu Nov 22 14:05:30 2018 +0100
@@ -104,8 +104,8 @@
     logoff() {
       this.$store.commit("user/clearAuth");
       this.$store.commit("application/showSidebar", false);
-      this.$store.commit("application/showUsermenu", false);
       this.$store.commit("application/showSplitscreen", false);
+      this.$store.dispatch("fairwayprofile/clearSelection");
       this.$router.push("/login");
     },
     toggleContextBox(context) {
--- a/client/src/components/map/toolbar/Cuttool.vue	Thu Nov 22 13:37:29 2018 +0100
+++ b/client/src/components/map/toolbar/Cuttool.vue	Thu Nov 22 14:05:30 2018 +0100
@@ -31,7 +31,6 @@
   },
   methods: {
     toggleCutTool() {
-      console.log(this.selectedSurvey);
       if (this.selectedSurvey) {
         this.cutTool.setActive(!this.cutTool.getActive());
         this.lineTool.setActive(false);