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/03/29 13:58:12 UTC

[incubator-dlab] branch DLAB-576 created (now dbc9c05)

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

ankovalyshyn pushed a change to branch DLAB-576
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at dbc9c05  [DLAB-577][Manage roles]: removed extra scrollbar from users column

This branch includes the following new commits:

     new e0ff817  [DLAB-576]: Added succeess notification after creating/removing account
     new dbc9c05  [DLAB-577][Manage roles]: removed extra scrollbar from users column

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[incubator-dlab] 01/02: [DLAB-576]: Added succeess notification after creating/removing account

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e0ff81765ba0c1968f5ac85e19cdb4e162f04c09
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Fri Mar 29 15:56:42 2019 +0200

    [DLAB-576]: Added succeess notification after creating/removing account
---
 .../webapp/src/app/resources/manage-ungit/manage-ungit.component.ts     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts b/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
index bf2c73e..2bceb72 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/manage-ungit/manage-ungit.component.ts
@@ -114,6 +114,7 @@ export class ManageUngitComponent implements OnInit {
       if (result) {
         this.gitCredentials.splice(this.gitCredentials.indexOf(item), 1);
         this.model.confirmAction(this.gitCredentials);
+        this.toastr.success('Git credentials deleted successfully!', 'Success!');
       }
     });
   }
@@ -135,6 +136,7 @@ export class ManageUngitComponent implements OnInit {
     this.model.confirmAction(this.gitCredentials);
     this.tabGroup.selectedIndex = 0;
     this.editableForm = false;
+    this.toastr.success('Git credentials updated successfully!', 'Success!');
   }
 
   private initFormModel(): void {


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


[incubator-dlab] 02/02: [DLAB-577][Manage roles]: removed extra scrollbar from users column

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit dbc9c059558aa1ea5c7ffaaeff475338b5fc46ff
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Fri Mar 29 15:57:55 2019 +0200

    [DLAB-577][Manage roles]: removed extra scrollbar from users column
---
 .../management/manage-roles-groups/manage-roles-groups.component.scss   | 1 +
 .../src/main/resources/webapp/src/assets/styles/_theme.scss             | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/management/manage-roles-groups/manage-roles-groups.component.scss b/services/self-service/src/main/resources/webapp/src/app/management/manage-roles-groups/manage-roles-groups.component.scss
index e882eeb..b28c061 100644
--- a/services/self-service/src/main/resources/webapp/src/app/management/manage-roles-groups/manage-roles-groups.component.scss
+++ b/services/self-service/src/main/resources/webapp/src/app/management/manage-roles-groups/manage-roles-groups.component.scss
@@ -164,6 +164,7 @@
     margin-top: 50px;
     height: inherit;
     min-height: 0;
+    overflow-y: hidden;
   }
 }
 .expanded-panel {
diff --git a/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss b/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss
index 7b9ad7e..df0b5db 100644
--- a/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss
+++ b/services/self-service/src/main/resources/webapp/src/assets/styles/_theme.scss
@@ -182,7 +182,7 @@
     .mat-chip-list {
       .mat-chip-list-wrapper {
         overflow-y: auto;
-        max-height: 110px;
+        max-height: 115px;
       }
     }
   }


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