summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts
index 56f2b01d5..e10dd409f 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint.module.ts
@@ -21,16 +21,20 @@ limitations under the License.
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
+
import { BlueprintComponent } from './blueprint.component';
import { BlueprintRoutingModule } from './blueprint-routing.module';
+import { SharedModule } from '../../../app/common/shared/shared.module';
+
@NgModule({
declarations: [
BlueprintComponent
],
imports: [
CommonModule,
- BlueprintRoutingModule
+ BlueprintRoutingModule,
+ SharedModule
]
})
export class BlueprintModule { }