@alfresco/adf-content-services 8.4.0-17323733946 → 8.4.0-17373527064
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.
|
@@ -1409,7 +1409,7 @@ class DiscoveryApiService {
|
|
|
1409
1409
|
this.ecmProductInfo$ = new Subject();
|
|
1410
1410
|
this.authenticationService.onLogin.subscribe(() => {
|
|
1411
1411
|
this.alfrescoApiService.alfrescoApiInitialized
|
|
1412
|
-
.pipe(filter(() => this.authenticationService.
|
|
1412
|
+
.pipe(filter(() => this.authenticationService.isLoggedIn()), take(1), switchMap(() => this.getEcmProductInfo()))
|
|
1413
1413
|
.subscribe((info) => this.ecmProductInfo$.next(info));
|
|
1414
1414
|
});
|
|
1415
1415
|
}
|
|
@@ -16789,7 +16789,7 @@ class SearchControlComponent {
|
|
|
16789
16789
|
return !!this.emptySearchTemplate;
|
|
16790
16790
|
}
|
|
16791
16791
|
isLoggedIn() {
|
|
16792
|
-
return this.authService.
|
|
16792
|
+
return this.authService.isLoggedIn();
|
|
16793
16793
|
}
|
|
16794
16794
|
inputChange(value) {
|
|
16795
16795
|
this.searchTerm = value;
|