Skip to content

Commit

Permalink
Fix dev/core#4083 - Broken autocomplete Afform widget
Browse files Browse the repository at this point in the history
  • Loading branch information
colemanw committed Jan 18, 2023
1 parent 1ebafab commit 7894a13
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 7894a13

Please sign in to comment.