Skip to content

Commit 42a72bb

Browse files
committed
#4 Add missing JS varialble initialization
1 parent eef622c commit 42a72bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/app/scripts/controllers/case/ObservableCreationCtrl.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
tags: [],
2020
tagNames: ''
2121
};
22+
$scope.tags = [];
2223

2324
$scope.$watchCollection('tags', function(value) {
2425
$scope.params.tagNames = _.pluck(value, 'text').join(',');
@@ -84,7 +85,6 @@
8485
postData.data = params.data;
8586
}
8687

87-
//postData.data = $scope.params.bulk ? params.data.split('\n') : params.data;
8888
} else if (params.attachment) {
8989
postData.attachment = params.attachment;
9090
}

0 commit comments

Comments
 (0)