From 6cf7fc70cf4ec42736bd526340f6b532e2e6c86b Mon Sep 17 00:00:00 2001 From: Alessandro Francia Date: Wed, 12 Sep 2018 17:08:49 +0200 Subject: [PATCH] fix --- Step/wwwroot/src/services/fileService.ts | 3 --- Step/wwwroot/src/store/production.store.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/Step/wwwroot/src/services/fileService.ts b/Step/wwwroot/src/services/fileService.ts index 5fb0b510..9b754265 100644 --- a/Step/wwwroot/src/services/fileService.ts +++ b/Step/wwwroot/src/services/fileService.ts @@ -36,9 +36,6 @@ export class FileService extends baseRestService { } async deleteItemQueue(processId, model){ - debugger - console.log("ProcessID = " + processId); - console.log(model); var result = await this.Delete(this.BASE_URL + "queue/" + processId + "/remove/" + model.id, true); productionActions.deletePartProgram(store,model); return result; diff --git a/Step/wwwroot/src/store/production.store.ts b/Step/wwwroot/src/store/production.store.ts index 9191824c..639450f9 100644 --- a/Step/wwwroot/src/store/production.store.ts +++ b/Step/wwwroot/src/store/production.store.ts @@ -28,15 +28,12 @@ export const productionStore = { store.partProgram = []; }, DeletePartProgram(store, model: server.PartProgramModel){ - debugger // let idx = store.partProgram.indexOf(model); // if(store.partProgram[idx].id == model.id){ // store.partProgram.splice(idx,1); - // console.log(store.partProgram); // } store._partProgram.delete(model.id); store.partProgram = Array.from(store._partProgram.values()); - console.log(store.partProgram); }, }, actions: {