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) { angular.forEach(
this.push(customProperty); getCustomProperties($scope.workPackage),
}, otherAttributes); function(customProperty) {
this.push(customProperty);
}, otherAttributes);
angular.forEach($scope.groupedAttributes, function(group) { angular.forEach($scope.groupedAttributes, function(group) {
var attributesWithValues = []; var attributesWithValues = [];

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

Loading…
Cancel
Save