Fix return value of HalResource.$load

pull/5155/head
Oliver Günther 8 years ago
parent 781d1309c3
commit b925b091fa
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 2
      frontend/app/components/api/api-v3/hal-resources/hal-resource.service.ts

@ -127,7 +127,7 @@ export class HalResource {
return <ng.IPromise<HalResource>> state.get().then(source => {
this.$initialize(source);
this.$loaded = true;
return source;
return this;
});
}

Loading…
Cancel
Save