Take out all special characters in string

This commit is contained in:
tiago.kayaya
2021-12-10 11:41:24 +01:00
parent e5edac65af
commit d7300080c3
3 changed files with 37 additions and 42 deletions
@@ -634,13 +634,8 @@ export class ExpedienteDetailPage implements OnInit {
}
openNewGroupPage() {
console.log(this.fulltask);
this.dataService.set("newGroup", true);
this.router.navigate(['/home/chat']);
this.dataService.set("newGroup", true);
if (window.innerWidth < 801) {
this.router.navigate(['/home/chat']);
this.newGroup();
}
else {
@@ -648,6 +643,7 @@ export class ExpedienteDetailPage implements OnInit {
this.dataService.set("task", this.task);
this.dataService.set("newGroupName", this.task.Folio);
this.dataService.set("documents", this.fulltask.Documents);
this.router.navigate(['/home/chat']);
}
}