Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

develop to master #29

Merged
merged 10 commits into from
Jun 3, 2024
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
Loading