Jon Gunter
Jon Gunter
Good to know. Thank you @MarcLoupias and @kylecordes . Are there any articles/resources you'd recommend showing best practices for implementing common pub/sub patterns with services?
I get around this issue by adding an `@Input()` setter to all my presentational form components that makes a clone of the object passed in (using lodash's `clone` or `cloneDeep`)....
I'm experiencing this, too. Got around it by creating a filter. Extend `AbstractSpecFilter` and override `isParamAllowed` so it filters out parameters named `password`. Not ideal, but it works.