This is an automated email from the ASF dual-hosted git repository. ankovalyshyn pushed a commit to branch DLAB-1056 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit 46787bc4aa93be530aa7c34e684619bb66f0b4a4 Author: Andriana Kovalyshyn <[email protected]> AuthorDate: Mon Sep 16 17:04:54 2019 +0300 [DLAB-1056]: changed ReportingConfigModel --- .../src/main/resources/webapp/src/dictionary/aws.dictionary.ts | 5 +++-- .../src/main/resources/webapp/src/dictionary/azure.dictionary.ts | 2 +- .../src/main/resources/webapp/src/dictionary/gcp.dictionary.ts | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/services/self-service/src/main/resources/webapp/src/dictionary/aws.dictionary.ts b/services/self-service/src/main/resources/webapp/src/dictionary/aws.dictionary.ts index 4c3fee3..0115109 100644 --- a/services/self-service/src/main/resources/webapp/src/dictionary/aws.dictionary.ts +++ b/services/self-service/src/main/resources/webapp/src/dictionary/aws.dictionary.ts @@ -85,7 +85,8 @@ export const NAMING_CONVENTION = { export class ReportingConfigModel { static getDefault(): ReportingConfigModel { - return new ReportingConfigModel([], [], [], [], [], '', '', ''); + debugger; + return new ReportingConfigModel([], [], [], [], [], '', '', '', []); } constructor( @@ -109,6 +110,6 @@ export class ReportingConfigModel { this.date_start = ''; this.date_end = ''; this.dlab_id = ''; - // this.project = []; + this.project = []; } } diff --git a/services/self-service/src/main/resources/webapp/src/dictionary/azure.dictionary.ts b/services/self-service/src/main/resources/webapp/src/dictionary/azure.dictionary.ts index 7db80d2..b8779b6 100644 --- a/services/self-service/src/main/resources/webapp/src/dictionary/azure.dictionary.ts +++ b/services/self-service/src/main/resources/webapp/src/dictionary/azure.dictionary.ts @@ -86,7 +86,7 @@ export const NAMING_CONVENTION = { export class ReportingConfigModel { static getDefault(): ReportingConfigModel { - return new ReportingConfigModel([], [], [], [], [], '', '', ''); + return new ReportingConfigModel([], [], [], [], [], '', '', '', []); } constructor( diff --git a/services/self-service/src/main/resources/webapp/src/dictionary/gcp.dictionary.ts b/services/self-service/src/main/resources/webapp/src/dictionary/gcp.dictionary.ts index eeb6807..b5a928c 100644 --- a/services/self-service/src/main/resources/webapp/src/dictionary/gcp.dictionary.ts +++ b/services/self-service/src/main/resources/webapp/src/dictionary/gcp.dictionary.ts @@ -91,7 +91,7 @@ export const NAMING_CONVENTION = { export class ReportingConfigModel { static getDefault(): ReportingConfigModel { - return new ReportingConfigModel([], [], [], [], [], '', '', ''); + return new ReportingConfigModel([], [], [], [], [], '', '', '', []); } constructor( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
