From 68f05141aa193914da2d0a05545caacaddef34e7 Mon Sep 17 00:00:00 2001 From: aziz Date: Thu, 2 Nov 2023 20:04:53 +0100 Subject: [PATCH] refactor: rename IgoAppSearchResultsToolModule to AppSearchResultsToolModule --- src/app/pages/portal/panels/panels.module.ts | 4 ++-- .../panels/search-results-tool/search-results-tool.module.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/pages/portal/panels/panels.module.ts b/src/app/pages/portal/panels/panels.module.ts index 4f4a78e2..79062ed3 100644 --- a/src/app/pages/portal/panels/panels.module.ts +++ b/src/app/pages/portal/panels/panels.module.ts @@ -1,5 +1,5 @@ import { IgoAppSearchModule } from '@igo2/integration'; -import { IgoAppSearchResultsToolModule } from './search-results-tool/search-results-tool.module'; +import { AppSearchResultsToolModule } from './search-results-tool/search-results-tool.module'; import { MatCardModule } from '@angular/material/card'; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; @@ -53,7 +53,7 @@ import { BottomPanelComponent } from './bottompanel/bottompanel.component'; IgoContextMenuModule, IgoAppSearchModule, IgoSearchModule.forRoot(), - IgoAppSearchResultsToolModule, + AppSearchResultsToolModule, MatExpansionModule, AppFeatureInfoModule, AppFeatureModule, diff --git a/src/app/pages/portal/panels/search-results-tool/search-results-tool.module.ts b/src/app/pages/portal/panels/search-results-tool/search-results-tool.module.ts index 75428ead..2842dcfe 100644 --- a/src/app/pages/portal/panels/search-results-tool/search-results-tool.module.ts +++ b/src/app/pages/portal/panels/search-results-tool/search-results-tool.module.ts @@ -38,4 +38,4 @@ import { SearchResultsToolComponent } from './search-results-tool.component'; exports: [SearchResultsToolComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) -export class IgoAppSearchResultsToolModule {} +export class AppSearchResultsToolModule {}