50632: Working metadataschema registry service

This commit is contained in:
Kristof De Langhe
2018-03-30 17:18:44 +02:00
parent 889a2f716e
commit 683b58eaaf
10 changed files with 195 additions and 1161 deletions

View File

@@ -32,7 +32,7 @@ export class MetadataSchemaComponent implements OnInit {
this.metadataSchema = this.registryService.getMetadataSchemaByName(params.schemaName);
this.metadataSchema.subscribe((value) => {
const schema = value.payload;
this.metadataFields = this.registryService.getMetadataFieldsBySchema(schema);
// this.metadataFields = this.registryService.getMetadataFieldsBySchema(schema);
this.namespace = { namespace: value.payload.namespace };
});
}