diff options
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts index 65ac90b4b..c2f3dad7f 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts @@ -26,8 +26,11 @@ import { Component, OnInit } from '@angular/core'; styleUrls: ['./resource-definition.component.scss'] }) export class ResourceDefinitionComponent implements OnInit { + appName: String; - constructor() { } + constructor() { + this.appName="datadict"; + } ngOnInit() { } |