@arsedizioni/ars-utils 19.0.20 → 19.0.22
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +2 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +2 -3
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/package.json +8 -8
- package/ui.application/ui/components/chips-selector/chips-selector.component.d.ts +1 -1
|
@@ -2371,11 +2371,10 @@ class ClipperService {
|
|
|
2371
2371
|
* Perform logout
|
|
2372
2372
|
*/
|
|
2373
2373
|
logout() {
|
|
2374
|
-
return this.httpClient.post(this._serviceUri + '/logout', {}).pipe(finalize(() => {
|
|
2374
|
+
return this.httpClient.post(this._serviceUri + '/logout', {}).pipe(finalize(() => {
|
|
2375
|
+
this.removeKeepAlive();
|
|
2375
2376
|
this.clear(true);
|
|
2376
|
-
return r;
|
|
2377
2377
|
}), catchError((_e) => {
|
|
2378
|
-
this.clear(true);
|
|
2379
2378
|
return of([]);
|
|
2380
2379
|
}));
|
|
2381
2380
|
}
|