File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export default Vue.extend({
37
37
watch: {
38
38
$route: {
39
39
immediate: true ,
40
- handler(to , from ) {
40
+ handler(to ) {
41
41
document .title = " WASP - " + (to .name || " Some Default Title" );
42
42
}
43
43
}
@@ -108,7 +108,6 @@ export default Vue.extend({
108
108
taskloop : function (): void {
109
109
if (! this .$cookies .isKey (" TaskId" )) {
110
110
this .id = " " ;
111
- console .log (" stopped" );
112
111
return ;
113
112
}
114
113
taskService
@@ -117,10 +116,7 @@ export default Vue.extend({
117
116
this .evaluateCode (subtask );
118
117
})
119
118
.catch ((err : string ): void => {
120
- if (err .includes (" finished" )) {
121
- // (Go to results)
122
- console .log (" finished" );
123
- } else {
119
+ if (! err .includes (" finished" )) {
124
120
console .error (err ); // Log the error
125
121
this .$bvToast .toast (err , {
126
122
title: " Error!" ,
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ export default Vue.extend({
50
50
watch: {
51
51
taskProgress : function () {
52
52
if (this .taskProgress .value === this .taskProgress .max ) {
53
- console .log (" done" );
54
53
this .$emit (" task-done" );
55
54
}
56
55
}
You can’t perform that action at this time.
0 commit comments