Skip to content

Commit

Permalink
Merge pull request #28 from KpParth/develop
Browse files Browse the repository at this point in the history
Commented the window.log in index file
  • Loading branch information
devikasuresh20 authored May 30, 2024
2 parents 3140248 + 5b0337a commit 15b74a6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ export class CoInformationServicesComponent implements OnInit {
if (response) {
this.GetInformationHistory();
this.detailsList = response;
console.log("detailsList", this.detailsList);
this.getDetailsFlag = true;
this.enableFileDetails=true;
this.informationServiceProvided.emit();
Expand Down
13 changes: 8 additions & 5 deletions src/app/innerpage/innerpage.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -882,11 +882,14 @@ export class InnerpageComponent implements OnInit {
this.ticks = 0;
console.log("after re initialize the timer", t);
const remarks = "Call disconnect from customer.";
this.closeCall(
remarks,
this.currentLanguageSet.callClosedSuccessfully,
this.wrapupCallID
);
console.log("this.callStatus", this.callStatus);
if (this.callStatus.toLowerCase().trim() === "closure"){
this.closeCall(
remarks,
this.currentLanguageSet.callClosedSuccessfully,
this.wrapupCallID
);
}
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { NotificationService } from '../services/notificationService/notificatio
import { ConfirmationDialogsService } from './../services/dialog/confirmation.service';



@Component({
selector: 'app-supervisor-training-resources',
templateUrl: './supervisor-training-resources.component.html',
Expand Down Expand Up @@ -96,7 +97,7 @@ export class SupervisorTrainingResourcesComponent implements OnInit, DoCheck {
constructor(private saved_data: dataService,
private notificationService: NotificationService,
public dialogService: ConfirmationDialogsService,
private httpServices:HttpServices) { }
private httpServices:HttpServices,) { }



Expand Down Expand Up @@ -453,7 +454,6 @@ else{
this.dialogService.alert(error, 'error');
});
}

activate(obj, val) {
const object = {
'providerServiceMapID': this.providerServiceMapID,
Expand Down
1 change: 0 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.png">
<script>

var baseTag = document.createElement('base');
baseTag.href = document.location.href;
document.head.appendChild(baseTag);
Expand Down

0 comments on commit 15b74a6

Please sign in to comment.