Open drewdaemon opened 6 years ago
According to the docs on NPM:
You can override those default options by injecting FusejsService in your app and setting FusejsService.defaultOptions to whatever you want.
This doesn't work because FusejsService.defaultOptions is a private property.
FusejsService.defaultOptions
My code:
constructor( public fuseService: FusejsService, ) { this.fuseService.defaultOptions = this.searchOpts; }
According to the docs on NPM:
This doesn't work because
FusejsService.defaultOptions
is a private property.My code: