aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-02-05 16:09:07 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-05 16:09:07 +0000
commit4ca59f42b60d2aa653f53e4e5887bdfdcef161f9 (patch)
treeca203fd7947ecf0a44c043db021be2972e251ecb
parent35a56c0a3fcf54aa8862b157bb6732522661fc80 (diff)
parent747524c37cd8156c585209463567b5d320417e99 (diff)
Merge "Application name input to CBAWizard"
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html2
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts5
-rw-r--r--cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html2
-rw-r--r--cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.ts5
4 files changed, 10 insertions, 4 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html
index 8778de4ce..68d0ade67 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html
+++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.html
@@ -16,5 +16,5 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================ -->
-<app-cbawizard></app-cbawizard>
+<app-cbawizard [appName]="appName"></app-cbawizard>
<router-outlet></router-outlet>
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts
index 59cbb4593..4612499ac 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.component.ts
@@ -27,8 +27,11 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./blueprint.component.scss']
})
export class BlueprintComponent implements OnInit {
+ appName: String;
- constructor() { }
+ constructor() {
+ this.appName="cba";
+ }
ngOnInit() {
}
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html
index 199ddf907..df6cc7363 100644
--- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html
+++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html
@@ -18,6 +18,6 @@
* ============LICENSE_END=========================================================
*/-->
-<app-cbawizard></app-cbawizard>
+<app-cbawizard [appName]="appName"></app-cbawizard>
<router-outlet></router-outlet>
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() {
}