X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Fcatalog%2Fcatalog.component.ts;fp=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Fcatalog%2Fcatalog.component.ts;h=bab515a7369d3fde8cb6064bf0c6b5b135e0f4b0;hb=8139455dc6a9db3958ececed5a54f5dc3541d429;hp=df43995943f8659c6d9a11bdd8b0daf86f12d166;hpb=5447254cb207353b33e6a444cce8a7fd84cfd34a;p=portal%2Fric-dashboard.git diff --git a/dashboard/webapp-frontend/src/app/catalog/catalog.component.ts b/dashboard/webapp-frontend/src/app/catalog/catalog.component.ts index df439959..bab515a7 100644 --- a/dashboard/webapp-frontend/src/app/catalog/catalog.component.ts +++ b/dashboard/webapp-frontend/src/app/catalog/catalog.component.ts @@ -30,7 +30,6 @@ import { LoadingDialogService } from '../services/ui/loading-dialog.service'; import { NotificationService } from '../services/ui/notification.service'; import { UiService } from '../services/ui/ui.service'; import { DeployDialogComponent } from '../ui/deploy-dialog/deploy-dialog.component'; -import { AppConfigurationComponent } from './../app-configuration/app-configuration.component'; import { OnboardComponent } from './../onboard/onboard.component'; import { CatalogDataSource } from './catalog.datasource'; @@ -52,9 +51,7 @@ export class CatalogComponent implements OnInit, OnDestroy { constructor( private appMgrService: AppMgrService, - private confirmDialogService: ConfirmDialogService, private dialog: MatDialog, - private loadingDialogService: LoadingDialogService, private notificationService: NotificationService, public instanceSelectorService: InstanceSelectorService, public ui: UiService) { } @@ -77,27 +74,6 @@ export class CatalogComponent implements OnInit, OnDestroy { this.instanceChange.unsubscribe(); } - onConfigureApp(xapp: XMXapp): void { - if (this.darkMode) { - this.panelClass = 'dark-theme'; - } else { - this.panelClass = ''; - } - const dialogRef = this.dialog.open(AppConfigurationComponent, { - panelClass: this.panelClass, - width: '40%', - maxHeight: '500px', - position: { - top: '10%' - }, - data: { - xapp: xapp, - instanceKey: this.instanceKey - } - - }); - } - onDeployApp(app: XMXapp): void { if (this.darkMode) { this.panelClass = 'dark-theme';