@arsedizioni/ars-utils 19.4.70 → 19.4.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core/system.d.ts CHANGED
@@ -4,6 +4,7 @@ export interface INode {
4
4
  name?: string;
5
5
  count?: number;
6
6
  children?: INode[];
7
+ subFolders?: INode[];
7
8
  parent?: INode;
8
9
  bag?: any;
9
10
  }
@@ -2822,7 +2822,9 @@ class ClipperService {
2822
2822
  return this.httpClient.post(this._serviceUri + '/account/teams', params)
2823
2823
  .pipe(map((r) => {
2824
2824
  // Store teams
2825
- this._teams = r.value.items;
2825
+ if (!params.adminsOnly) {
2826
+ this._teams = r.value.items;
2827
+ }
2826
2828
  return r;
2827
2829
  }));
2828
2830
  }