Dreamstar Enterprises
Dreamstar Enterprises
Will deep signals be supported for maps like this? E.g. so computed signals can be created on specific keys, whose values might be arrays? ``` type FilterModalState = { filterModalMap:...
how do I implement this? MongoSession is underlined in red in my IDE ``` fun webSessionStore( reactiveMongoSessionRepository: ReactiveMongoSessionRepository ): SpringSessionWebSessionStore { return SpringSessionWebSessionStore(reactiveMongoSessionRepository) } ```
I'm feeling burned out. After spending 3 months trying to get Redis Session to work (it didn't), the delete functions wouldn't delete anything. I switched to MongoDB, gave up on...
Maybe this might help: https://stackblitz.com/edit/stackblitz-starters-ki6sdw?file=src%2Fmain.ts **Parent** ``` protected ngOnInit(): void { // assign project ID this.activatedRoute.params. pipe(takeUntilDestroyed(this.destroyRef)) .subscribe((params) => { this.projectID = params['id']; console.log(this.projectID) }); // if project in store...
Sorry, This ought to work, but I'm getting a compilation error that it cannot find App_Routes: https://stackblitz.com/edit/stackblitz-starters-ki6sdw?file=src%2Fmain.ts
Removed that app router bug, I put the variable inside main.ts... not sure if it works for you https://stackblitz.com/edit/stackblitz-starters-ki6sdw?file=src%2Fmain.ts (for me the window says ...loading) In JetBrains, I still get...
Strange, my consol is clean, but the window to the right says '...Loading'
Looks fine on StackBlitz... maybe I need to upgrade Angular or JetBrains:
Only difference that I can tell is that I lazy load the project routes in app_routes, in Jet Brains: ``` export const APP_ROUTES: Routes = [ { path: 'projects', title:...
Ahh.. but the child in my code does sit inside a defer block, inside the parent! Maybe that is it Yes, I've confirmed. It is because of the defer block!...