fix change reps

This commit is contained in:
Alessandro Francia
2018-09-19 11:39:51 +02:00
parent 0340ad485c
commit 35221eff5d
2 changed files with 7 additions and 7 deletions
@@ -53,12 +53,7 @@ export default {
debugger
this.enablePopup = true;
this.$emit("position", this.$el, this.enablePopup, true);
},
async changeReps(value){
console.log(value);
await new FileService().changeReps(this.selectedProcess, this.idPartProgram, value)
this.enablePopup = false;
},
}
// close(){
// this.enablePopup = false;
// }
@@ -159,7 +159,12 @@ export default {
},
close(){
this.enablePopup = false;
}
},
async changeReps(value){
console.log(value);
await new FileService().changeReps(this.selectedProcess, this.idPartProgram, value)
this.enablePopup = false;
},
}
}