Skip to content

Commit

Permalink
#12 Don't stringify the custom field definition during creation process
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jun 29, 2017
1 parent fa85f89 commit 27c04fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/app/scripts/controllers/admin/AdminCaseTemplatesCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
};
$scope.tags = [];
$scope.templateIndex = -1;
$scope.templateCustomFields = [];
};

$scope.reorderTasks = function() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
ListSrv.save({
'listId': 'custom_fields'
}, {
'value': JSON.stringify(postData)
'value': postData
}, onSuccess, onFailure);
}
}, onFailure);
Expand Down

0 comments on commit 27c04fb

Please sign in to comment.