Skip to content

Commit

Permalink
feat(stark-ui): generic-search - adapt results$ variable visibility…
Browse files Browse the repository at this point in the history
… to `public`

ISSUES CLOSED: #3082
  • Loading branch information
SuperITMan committed Nov 17, 2021
1 parent 239c57b commit 99d1ae8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export abstract class AbstractStarkSearchComponent<SearchResultsType, CriteriaTy
* Observable that will emit the search results. This Observable is created as soon as the Search Page controller is constructed
* and the first value it emits is an empty array in order to avoid the having undefined values passed down to the subscriber(s).
*/
protected results$!: ReplaySubject<SearchResultsType[]>;
public results$!: ReplaySubject<SearchResultsType[]>;

/**
* Class constructor
Expand Down

0 comments on commit 99d1ae8

Please sign in to comment.