diff options
Diffstat (limited to 'frontend/src/app/_pages/my-predictors')
| -rw-r--r-- | frontend/src/app/_pages/my-predictors/my-predictors.component.ts | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/frontend/src/app/_pages/my-predictors/my-predictors.component.ts b/frontend/src/app/_pages/my-predictors/my-predictors.component.ts index 13cfdab2..17c496fd 100644 --- a/frontend/src/app/_pages/my-predictors/my-predictors.component.ts +++ b/frontend/src/app/_pages/my-predictors/my-predictors.component.ts @@ -20,8 +20,6 @@ export class MyPredictorsComponent implements OnInit {      if(window.confirm("IZABRANI MODEL ĆE BITI IZBRISAN"))        {        this.predictorsS.deletePredictor(predictor).subscribe((response) => { -        console.log("OBRISANOOO JEE", response); -        //na kraju uspesnog          this.getAllMyPredictors();        }, (error) =>{            if (error.error == "Predictor with name = {name} deleted") { @@ -35,9 +33,7 @@ export class MyPredictorsComponent implements OnInit {    getAllMyPredictors(): void{      this.predictorsS.getMyPredictors().subscribe(m => { -              this.predictors = m; -      console.log(this.predictors);      });    } | 
