You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by an...@apache.org on 2019/07/10 15:53:17 UTC

[incubator-dlab] 14/19: [DLAB-834]: cleanup management view

This is an automated email from the ASF dual-hosted git repository.

ankovalyshyn pushed a commit to branch feature/projects
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit c343bd259a34aed35d11f7ec783cd2e1f2cc4a64
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Wed Jul 10 18:25:19 2019 +0300

    [DLAB-834]: cleanup management view
---
 .../administration/management/backup-dilog/backup-dilog.component.ts  | 3 +--
 .../management/management-grid/management-grid.component.ts           | 4 +---
 .../webapp/src/app/administration/management/management.component.ts  | 1 -
 3 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/backup-dilog/backup-dilog.component.ts b/services/self-service/src/main/resources/webapp/src/app/administration/management/backup-dilog/backup-dilog.component.ts
index feaf25f..0bcee95 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/backup-dilog/backup-dilog.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/backup-dilog/backup-dilog.component.ts
@@ -75,7 +75,7 @@ export class BackupDilogComponent implements OnInit {
       if (this.backupOptions[el] instanceof Array) {
         if (this.backupOptions[el][0] && this.backupOptions[el][0] !== 'skip') items.push(this.backupOptions[el][0]);
       } else {
-        if (this.backupOptions[el]) items.push(this.backupOptions[el]) ;
+        if (this.backupOptions[el]) items.push(this.backupOptions[el]);
       }
     });
 
@@ -83,7 +83,6 @@ export class BackupDilogComponent implements OnInit {
   }
 
   private getBackupStatus(result) {
-    debugger;
     const uuid = result.body;
     this.backupService.getBackupStatus(uuid)
       .subscribe((backupStatus: any) => {
diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.ts b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.ts
index 3e965dc..e717e9b 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/management-grid/management-grid.component.ts
@@ -37,13 +37,11 @@ export interface ManageAction {
   templateUrl: 'management-grid.component.html',
   styleUrls: [
     './management-grid.component.scss',
-    '../../../resources/resources-grid/resources-grid.component.css',
+    '../../../resources/resources-grid/resources-grid.component.scss',
     '../../../resources/computational/computational-resources-list/computational-resources-list.component.scss'
   ]
 })
 export class ManagementGridComponent implements OnInit {
-  // @Input() allEnvironmentData: Array<any>;
-
   allEnvironmentData: Array<any>;
   loading: boolean = false;
 
diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts b/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
index a123e2f..c737bdb 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
@@ -148,7 +148,6 @@ export class ManagementComponent implements OnInit {
   private getExploratoryList() {
     this.userResourceService.getUserProvisionedResources()
       .subscribe((result) => {
-        debugger;
         this.anyEnvInProgress = this.isEnvironmentsInProgress(result);
         this.notebookInProgress = this.isNotebookInProgress(result);
       });


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org