Skip to content

Commit

Permalink
Merge pull request #25374 from colemanw/fixChange
Browse files Browse the repository at this point in the history
Fix dev/core#4083 - Broken autocomplete Afform widget
  • Loading branch information
totten authored Jan 19, 2023
2 parents 92fcdc7 + 7894a13 commit a05bcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ang/crmUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@
if (ctrl.ngModel) {
// Ensure widget is updated when model changes
ctrl.ngModel.$render = function() {
element.val(ctrl.ngModel.$viewValue || '').change();
element.val(ctrl.ngModel.$viewValue || '');
};

// Copied from ng-list
Expand Down

0 comments on commit a05bcd4

Please sign in to comment.