Skip to content

Commit

Permalink
npm install create package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed Nov 5, 2023
1 parent f665b43 commit f865d94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/web/src/app/core/menus.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export class MenusService {
let params = new HttpParams({fromObject: request as any});
return this.http.get<Menu[]>('/menus/me', {params: params})
.pipe(switchMap(items => {
return from(items).pipe(delay(20),
return from(items).pipe(delay(100),
mergeMap(item => {
return this.getChildren({pcode: item.code}).pipe(map(children => {
item.children = children;
return item;
}));
}));
}), retry(3));
}), toArray(), retry(3));
}

Expand Down

0 comments on commit f865d94

Please sign in to comment.