Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fa62ea8

Browse files
committed
fix(ng-list): remove data bound flicker
1 parent bf8ed8a commit fa62ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ var ngListDirective = function() {
12191219

12201220
ctrl.$parsers.push(parse);
12211221
ctrl.$formatters.push(function(value) {
1222-
if (isArray(value) && !equals(parse(ctrl.$viewValue), value)) {
1222+
if (isArray(value)) {
12231223
return value.join(', ');
12241224
}
12251225

0 commit comments

Comments
 (0)