Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit b2b8c32

Browse files
committed
Prevent jshint complain
1 parent 80d1548 commit b2b8c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uiSelectController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ uis.controller('uiSelectCtrl',
148148
$scope.$uisSource = Object.keys($scope.peopleObj).map(function(v){
149149
var result = {};
150150
result[ctrl.parserResult.keyName] = v;
151-
result['value'] = $scope.peopleObj[v];
151+
result.value = $scope.peopleObj[v];
152152
return result;
153153
});
154154
}

0 commit comments

Comments
 (0)