Skip to content
Snippets Groups Projects
Verified Commit 4b289b86 authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #12091 TIME 0:20 redirect after close + ts error

parent 02d24576
No related branches found
No related tags found
No related merge requests found
......@@ -304,15 +304,18 @@ export class ActionsService {
tap((result: any) => {
this.endAction(result);
let firstGroup: number = 0;
let redirectAfterClose = '';
this.headerService.user.groups.filter((group: any) => group.can_index === true).forEach((group: any) => {
if (firstGroup == 0) {
firstGroup = group.id;
}
if (group.id == this.currentGroupId) {
this.router.navigate(['/indexing/' + this.currentGroupId]);
redirectAfterClose = '/indexing/' + this.currentGroupId;
}
});
if (firstGroup == 0) {
if (redirectAfterClose != '') {
this.router.navigate([redirectAfterClose]);
} else if (firstGroup == 0) {
this.router.navigate(['/home']);
} else {
this.router.navigate(['/indexing/' + firstGroup]);
......
......@@ -134,7 +134,7 @@ export class NoteEditorComponent implements OnInit {
getTemplatesNote() {
if (this.templatesNote.length == 0) {
let params = {};
if (this.resIds.length == 1) {
if (!this.functions.empty(this.resIds) && this.resIds.length == 1) {
params['resId'] = this.resIds[0];
}
this.http.get("../../rest/notesTemplates", { params: params })
......@@ -149,7 +149,7 @@ export class NoteEditorComponent implements OnInit {
return new Promise((resolve, reject) => {
if (this.entities.length == 0) {
let params = {};
if (this.resIds.length == 1) {
if (!this.functions.empty(this.resIds) && this.resIds.length == 1) {
params['resId'] = this.resIds[0];
}
this.http.get("../../rest/entities").pipe(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment