Skip to content

Commit 755ab7b

Browse files
committed
fix(ng:list) : ng-list directive separator bug fix.
1 parent d30845a commit 755ab7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ var ngListDirective = function() {
12701270
ctrl.$parsers.push(parse);
12711271
ctrl.$formatters.push(function(value) {
12721272
if (isArray(value)) {
1273-
return value.join(', ');
1273+
return value.join(separator + ' ');
12741274
}
12751275

12761276
return undefined;

0 commit comments

Comments
 (0)