@ni/nimble-angular 16.8.2 → 16.8.4
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.
- package/esm2020/directives/list-option/nimble-combobox-list-option.directive.mjs +3 -3
- package/fesm2015/ni-nimble-angular.mjs +2 -2
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +2 -2
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -6524,7 +6524,7 @@ class NimbleComboboxListOptionDirective {
|
|
|
6524
6524
|
}
|
|
6525
6525
|
ngAfterViewInit() {
|
|
6526
6526
|
if (this.combobox) {
|
|
6527
|
-
this._currentTextContent = this.elementRef.nativeElement.
|
|
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.
|
|
6539
|
+
this._currentTextContent = this.elementRef.nativeElement.text;
|
|
6540
6540
|
this.combobox.addOption(this._currentTextContent, value);
|
|
6541
6541
|
}
|
|
6542
6542
|
}
|