[24389] Fix initial ID rendering without schema

As the work packages from the list response have no schema, but are
used to build the table, they initially have no schema yet.
pull/5096/head
Oliver Günther 8 years ago
parent fd0f811212
commit 48bbb25b36
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 2
      frontend/app/components/work-packages/wp-display-attr/wp-display-attr.directive.ts

@ -53,7 +53,7 @@ export class WorkPackageDisplayAttributeController {
protected $scope: ng.IScope) {
// Update the attribute initially
if (this.workPackage) {
if (this.workPackage && this.customSchema && this.schema[this.attribute]) {
this.updateAttribute(this.workPackage);
}
}

Loading…
Cancel
Save