Skip to content
Snippets Groups Projects
Unverified Commit a05bcd45 authored by totten's avatar totten Committed by GitHub
Browse files

Merge pull request #25374 from colemanw/fixChange

Fix #4083 - Broken autocomplete Afform widget
parents 92fcdc7c 7894a138
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment