i update the file-manager-component to test if i called the file-manager from main menu or from detail-component :
ngOnInit(): void {
    if (!this.Path) {
      this.updateStream.patchStore({
        currentDirectory: null,
      });
    } else { 
      const folder={
          "name": "Administrative Works",
          "isDirectory": true,
          "size": 0,
          "iconInfo": null,
          "concurrencyStamp": "2e984bfc1f7d40df87bf0c2bd8f45fc8",
          "displayName": null,
          "lastModificationTime": null,
          "lastModifierId": null,
          "creationTime": "2023-08-05T14:59:30.764599",
          "creatorId": null,
          "id": "4fc5e346-d18a-410c-8770-fb212eb45bce",
          "extraProperties": {}
      };
      this.navigator.goToFolder(folder); 
    }
}
when i call file-manager from detail-component i got error
Hello, my example was : when I go to my component Todo, the file manager should update and go to folder Todo. How I can call the service correctly because i called gotofolder (navigation service) & patchstore(UpdateStreamService) but not correctly work there is other service not updated: --subdirectrory---
                                
 
                            

