aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-02-13 13:16:08 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-02-13 13:16:23 +0530
commit63e3a86f6d3bfce736b4be1372fb109f7003efda (patch)
treea643dc5e8c7ac2e3fe9eb9e28d4928ab6f6bd0ae /cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts
parentad2884574d3aa59be58de627de9d035bde98eb4d (diff)
Added layout changes for modify template
Layout changes for 2nd stepper Issue-ID: CCSDK-975 Change-Id: Ie238a930545e55b5a3a8d19e8966a19bca3691a7 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts
index f502de4b1..eed926b7f 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts
@@ -20,8 +20,11 @@ limitations under the License.
*/
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
+import { CdkTableModule } from '@angular/cdk/table';
+
import { ModifyTemplateComponent } from './modify-template.component';
import { ModifyTemplateRoutingModule } from './modify-template-routing.module';
+import { AppMaterialModule } from '../../../common/modules/app-material.module';
@NgModule({
declarations: [
@@ -32,6 +35,8 @@ import { ModifyTemplateRoutingModule } from './modify-template-routing.module';
],
imports: [
CommonModule,
+ CdkTableModule,
+ AppMaterialModule,
ModifyTemplateRoutingModule
]
})