diff --git a/frontend/src/performance/components/HeaderUser.vue b/frontend/src/performance/components/HeaderUser.vue index f621fa6619..d145cdaa34 100644 --- a/frontend/src/performance/components/HeaderUser.vue +++ b/frontend/src/performance/components/HeaderUser.vue @@ -69,7 +69,7 @@ computed: { currentUser: () => { let user = Cookies.get(TokenKey); - window.console.log(user); + // window.console.log(user); return JSON.parse(user); } }, diff --git a/frontend/src/performance/components/testPlan/EditTestPlan.vue b/frontend/src/performance/components/testPlan/EditTestPlan.vue index ac8ab03905..e98c1a3350 100644 --- a/frontend/src/performance/components/testPlan/EditTestPlan.vue +++ b/frontend/src/performance/components/testPlan/EditTestPlan.vue @@ -91,7 +91,6 @@ }, created() { let testId = this.$route.path.split('/')[2]; - window.console.log(testId); if (testId) { this.$get('/testplan/get/' + testId, response => { this.testPlan = response.data;