Skip to content

Commit

Permalink
Add comment for deprecation false-positive: ReactiveX/rxjs#4772
Browse files Browse the repository at this point in the history
  • Loading branch information
MightyAx committed Oct 1, 2020
1 parent dfaccbb commit 3f05821
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class EnumListInputComponent extends BaseInputComponent implements OnInit

this.enumValues = this.metadata.schema.enum;

// noinspection JSDeprecatedSymbols
// noinspection JSDeprecatedSymbols false-positive see: ReactiveX/rxjs#4772
this.options$ = this.searchControl.valueChanges
.pipe(
startWith(null),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class OntologyBaseComponent extends BaseInputComponent implements OnInit
super.ngOnInit();
const value: Ontology = this.metadataFormService.cleanFormData(this.control.value);
this.searchControl = this.createSearchControl(value);
// noinspection JSDeprecatedSymbols
// noinspection JSDeprecatedSymbols false-positive see: ReactiveX/rxjs#4772
this.options$ = this.searchControl.valueChanges
.pipe(
startWith(this.searchControl.value ? this.searchControl.value : ''),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class OntologyListInputComponent extends OntologyBaseComponent implements
const value = this.metadataFormService.cleanFormData(this.control.value);
this.value = this.metadataFormService.isEmpty(value) ? undefined : value;
this.searchControl = this.createSearchControl(value);
// noinspection JSDeprecatedSymbols
// noinspection JSDeprecatedSymbols false-positive see: ReactiveX/rxjs#4772
this.options$ = this.searchControl.valueChanges
.pipe(
startWith(this.searchControl.value ? this.searchControl.value : ''),
Expand Down

0 comments on commit 3f05821

Please sign in to comment.