summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts11
1 files changed, 7 insertions, 4 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts
index 20cec7448..5734d4050 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-creation/dictionary-creation.store.ts
@@ -29,11 +29,14 @@ import { SourcesStore } from './sources-template/sources.store';
providedIn: 'root'
})
export class DictionaryCreationStore extends Store<ResourceDictionary> {
- constructor(private dictionaryCreationService: DictionaryCreationService, private sourcesStore: SourcesStore) {
+ constructor(
+ private dictionaryCreationService: DictionaryCreationService,
+ private sourcesStore: SourcesStore
+ ) {
super(new ResourceDictionary());
}
-
- changeMetaData(metaDataObject: MetaData) {
+ // changeMetaData(metaDataObject: MetaData) {
+ changeMetaData(metaDataObject: any) {
console.log(metaDataObject);
this.setState({
...this.state,
@@ -43,7 +46,7 @@ export class DictionaryCreationStore extends Store<ResourceDictionary> {
getSources() {
this.sourcesStore.state$.subscribe(data => {
- console.log(data);
+ console.log(data);
});
}