Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
fix(postprocessing): use instance.ref$ instead of instanc.value selector
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Apr 22, 2022
1 parent 2223709 commit c57e885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/postprocessing/src/lib/effect-composer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ export class NgtEffectComposer extends NgtInstance<
);

private readonly sizeParams$ = this.select(
this.select((s) => s.instance.value),
this.instance.ref$,
this.store.select((s) => s.size)
);

private readonly beforeRenderParams$ = this.select(
this.select((s) => s.instance.value),
this.instance.ref$,
this.select((s) => s.autoClear),
this.select((s) => s.enabled),
this.select((s) => s.renderPriority)
Expand Down

0 comments on commit c57e885

Please sign in to comment.