We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5529f7 commit 96fd6e0Copy full SHA for 96fd6e0
libs/angular-three-postprocessing/package.json
@@ -24,6 +24,7 @@
24
"peerDependencies": {
25
"@angular/common": "^15.1.0",
26
"@angular/core": "^15.1.0",
27
+ "angular-three": "^1.0.0",
28
"postprocessing": "^6.0.0"
29
},
30
"dependencies": {
libs/angular-three-postprocessing/src/lib/effect.ts
@@ -75,7 +75,7 @@ export function componentInputsToCombinedStream(
75
return combineLatest(
76
inputs.reduce((combined, input) => {
77
let input$ = component.select(input);
78
- if (component.get(input) !== undefined) {
+ if (component.get(input) === undefined) {
79
input$ = input$.pipe(startWithUndefined());
80
}
81
combined[input] = input$;
0 commit comments