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/09/10 08:48:43 UTC

[incubator-dlab] branch DLAB-1038 created (now 637b408)

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

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


      at 637b408  [DLAB-1038]: fixed overlaps and collapse markdown

This branch includes the following new commits:

     new 637b408  [DLAB-1038]: fixed overlaps and collapse markdown

The 1 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/01: [DLAB-1038]: fixed overlaps and collapse markdown

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

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

commit 637b4085a629c1dbc76a1f7e8598552b73dbd096
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Tue Sep 10 11:48:28 2019 +0300

    [DLAB-1038]: fixed overlaps and collapse markdown
---
 .../create-environment/create-environment.component.html            | 2 +-
 .../create-environment/create-environment.component.scss            | 6 ++++++
 .../src/app/resources/resources-grid/resources-grid.component.ts    | 4 +---
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.html
index 94e0c29..41c8434 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.html
@@ -23,7 +23,7 @@
     <button type="button" class="close" (click)="dialogRef.close()">&times;</button>
   </header>
   <div class="dialog-content selection">
-    <div class="content-box mat-reset">
+    <div id="scrolling" class="content-box mat-reset scrolling-content">
       <form [formGroup]="createExploratoryForm" *ngIf="createExploratoryForm" novalidate>
         <div class="control-group">
           <label class="label">Select project</label>
diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.scss b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.scss
index f99515f..0686401 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.scss
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/create-environment/create-environment.component.scss
@@ -67,3 +67,9 @@
   max-height: 560px;
   overflow-y: auto;
 }
+
+@-moz-document url-prefix() {
+  form {
+    padding-bottom: 30px;
+  }
+}
diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.ts b/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.ts
index b3ab6fd..fc81346 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/resources-grid/resources-grid.component.ts
@@ -262,9 +262,7 @@ export class ResourcesGridComponent implements OnInit {
   updateUserPreferences(filterConfiguration: FilterConfigurationModel): void {
     this.userResourceService.updateUserPreferences(filterConfiguration)
       .subscribe((result) => { },
-        (error) => {
-          console.log('UPDATE USER PREFERENCES ERROR ', error);
-        });
+        (error) => console.log('UPDATE USER PREFERENCES ERROR ', error));
   }
 
   printDetailEnvironmentModal(data): void {


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