pull/2550/head
Mihail Maxacov 10 years ago
parent 42fd9237b5
commit 6fb65dad6a
  1. 8
      frontend/app/work_packages/controllers/details-tab-overview-controller.js
  2. 4
      frontend/tests/unit/tests/work_packages/controllers/details-tab-overview-controller-test.js

@ -166,9 +166,11 @@ module.exports = function($scope,
}));
}
angular.forEach(getCustomProperties($scope.workPackage), function(customProperty) {
this.push(customProperty);
}, otherAttributes);
angular.forEach(
getCustomProperties($scope.workPackage),
function(customProperty) {
this.push(customProperty);
}, otherAttributes);
angular.forEach($scope.groupedAttributes, function(group) {
var attributesWithValues = [];

@ -51,8 +51,8 @@ describe('DetailsTabOverviewController', function() {
schema: {
props: {
customField1: {
type: "Formattable",
name: "color",
type: 'Formattable',
name: 'color',
required: false,
writable: true
},

Loading…
Cancel
Save