add 'title' to list of properties used for rendering wp table td

pull/4159/head
Jens Ulferts 9 years ago
parent fd710df9c2
commit 77a10100ff
  1. 2
      frontend/app/work_packages/helpers/work-packages-helper.js

@ -44,7 +44,7 @@ module.exports = function(TimezoneService, currencyFilter, CustomFieldHelper) {
switch(typeof(content)) { switch(typeof(content)) {
case 'object': case 'object':
if (content === null) { return ''; } if (content === null) { return ''; }
return content.name || content.subject || ''; return content.name || content.subject || content.title || '';
case 'number': case 'number':
return content; return content;
default: default:

Loading…
Cancel
Save