@ni/nimble-angular 16.8.1 → 16.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6524,7 +6524,7 @@ class NimbleComboboxListOptionDirective {
6524
6524
  }
6525
6525
  ngAfterViewInit() {
6526
6526
  if (this.combobox) {
6527
- this._currentTextContent = this.elementRef.nativeElement.textContent;
6527
+ this._currentTextContent = this.elementRef.nativeElement.text;
6528
6528
  this.combobox.addOption(this._currentTextContent, this._modelValue);
6529
6529
  }
6530
6530
  }
@@ -6536,7 +6536,7 @@ class NimbleComboboxListOptionDirective {
6536
6536
  updateComboboxValue(value) {
6537
6537
  this.combobox.removeOption(this._currentTextContent);
6538
6538
  this.changeDetector.detectChanges();
6539
- this._currentTextContent = this.elementRef.nativeElement.textContent;
6539
+ this._currentTextContent = this.elementRef.nativeElement.text;
6540
6540
  this.combobox.addOption(this._currentTextContent, value);
6541
6541
  }
6542
6542
  }