You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by dg...@apache.org on 2020/10/30 09:52:50 UTC

[incubator-datalab] branch DATALAB-2128 created (now a2f9e6f)

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

dgnatyshyn pushed a change to branch DATALAB-2128
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git.


      at a2f9e6f  [DATALAB-2128]: Fixed filter dropdowns is overlapped by footer on firefox, safari

This branch includes the following new commits:

     new 24bf17b  Merge remote-tracking branch 'origin/develop' into develop
     new a2f9e6f  [DATALAB-2128]: Fixed filter dropdowns is overlapped by footer on firefox, safari

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@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 02/02: [DATALAB-2128]: Fixed filter dropdowns is overlapped by footer on firefox, safari

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

dgnatyshyn pushed a commit to branch DATALAB-2128
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit a2f9e6fbe2f92770280f8430c579109e0e9ba575
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Fri Oct 30 11:52:26 2020 +0200

    [DATALAB-2128]: Fixed filter dropdowns is overlapped by footer on firefox, safari
---
 .../management/management-grid/management-grid.component.ts             | 2 +-
 .../exploratory/install-libraries/install-libraries.component.ts        | 2 +-
 .../modal-dialog/confirmation-dialog/confirmation-dialog.component.html | 2 +-
 .../src/main/resources/webapp/src/assets/styles/_theme.scss             | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

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 3ba78a9..1f809dd 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
@@ -325,7 +325,7 @@ export class ManagementGridComponent implements OnInit {
         <div class="resource-name">Notebook</div>
         <div class="clusters-list">
           <div class="clusters-list-item">
-            <div class="cluster"><span *ngIf="isClusterLength">Cluster</span></div>
+            <div class="cluster"><span *ngIf="isClusterLength">Compute</span></div>
             <div class="status">Further status</div>
           </div>
         </div>
diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts
index c8dc1ca..aa816ed 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts
@@ -152,7 +152,7 @@ export class InstallLibrariesComponent implements OnInit, OnDestroy {
       .filter(item => item.status === 'running')
       .map(item => {
         item['name'] = item.computational_name;
-        item['title'] = `${item.computational_name} <em class="capt">cluster</em>`;
+        item['title'] = `${item.computational_name} <em class="capt">compute</em>`;
         item['type'] = 'СOMPUTATIONAL';
         return item;
       }));
diff --git a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
index e21a968..096a88c 100644
--- a/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/shared/modal-dialog/confirmation-dialog/confirmation-dialog.component.html
@@ -46,7 +46,7 @@
             <div class="resource-name">Notebook</div>
             <div class="clusters-list">
               <div class="clusters-list-item">
-                <div class="cluster"><span *ngIf="isClusterLength">Cluster</span></div>
+                <div class="cluster"><span *ngIf="isClusterLength">Compute</span></div>
                 <div class="status">Further status</div>
               </div>
             </div>
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 fd6860c..7799e11 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
@@ -999,7 +999,7 @@ mat-progress-bar {
 .billing-page-wrapper{
   tfoot{
     position: sticky;
-    z-index: 101;
+    z-index: 1;
     bottom: 0;
   }
 


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


[incubator-datalab] 01/02: Merge remote-tracking branch 'origin/develop' into develop

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

dgnatyshyn pushed a commit to branch DATALAB-2128
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit 24bf17b11f0a9e4679c4bd2f4cf9ba4dea4f3bae
Merge: 41d56e9 0425ef1
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Fri Oct 30 11:24:41 2020 +0200

    Merge remote-tracking branch 'origin/develop' into develop

 .../management-grid/management-grid.component.html |  4 ++--
 .../app/administration/roles/roles.component.ts    |  4 +---
 .../audit/audit-grid/audit-grid.component.html     | 12 ++++++----
 .../bucket-browser/bucket-browser.component.html   |  6 ++---
 .../bucket-browser/bucket-browser.component.scss   | 11 ++++-----
 .../confirmation-dialog.component.html             | 28 ++--------------------
 .../resources/webapp/src/assets/styles/_theme.scss | 10 ++++++++
 7 files changed, 29 insertions(+), 46 deletions(-)


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