Esteban Gehring
Esteban Gehring
@shubham-lakhiwal can you please re-generate the samples?
@marinus-suniram can you please merge the most recent master, re-generate the samples, and add the new tests to https://github.com/OpenAPITools/openapi-generator/blob/186ad25cee158f6ac9b7d22448cbbdd1db065178/pom.xml#L1212 ?
unfortunately, there are still outdated samples, can you please check again?
we are also experiencing the issue described. Using [karma-spec-reporter](https://github.com/mlex/karma-spec-reporter) we get an information about which test causes an issue.
related issue/duplicate: https://github.com/NativeScript/nativescript-schematics/issues/302
we can solve the issue partially, by only showing options that are not in the filtered results [stackblitz](https://stackblitz.com/edit/github-vjdh8n-dinzm3?file=src%2Fapp%2Fexamples%2F05-server-side-search-example%2Fserver-side-search-example.component.ts) ``` this.hiddenOptions = this.filteredServerSideBanks.pipe( map( (values) => this.bankServerSideCtrl.value?.filter( (a) => !values.find((b) =>...
ok, was able to solve it, by only showing the options if search ctrl is empty [stackblitz](https://stackblitz.com/edit/github-a4bxcs?file=src%2Fapp%2Fexamples%2F05-server-side-search-example%2Fserver-side-search-example.component.ts) ``` {{ bank.name }} ``` also need to remove `filter((search) => !!search)` as...
@MoishyS so do you have a suggestion how to improve the example?
@MoishyS thanks for your suggestions. do you want to implement the changes you suggested?
the description of `alwaysRestoreSelectedOptionsMulti` states https://github.com/bithost-gmbh/ngx-mat-select-search/blob/a75373e0ef2081d8683319282242728ef46460c4/src/app/mat-select-search/mat-select-search.component.ts#L196-L200 > options are only restored while filtering is active this refers to the `this._formControl.value && this._formControl.value.length` part in https://github.com/bithost-gmbh/ngx-mat-select-search/blob/a75373e0ef2081d8683319282242728ef46460c4/src/app/mat-select-search/mat-select-search.component.ts#L586 setting `alwaysRestoreSelectedOptionsMulti=true` enhances the restoration...