You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by yt...@apache.org on 2021/07/01 11:15:26 UTC

[incubator-datalab] branch DATALAB-2483 created (now 73630a0)

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

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


      at 73630a0  [DATALAB-2483] added none option for custom image

This branch includes the following new commits:

     new 73630a0  [DATALAB-2483] added none option for custom image

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


[incubator-datalab] 01/01: [DATALAB-2483] added none option for custom image

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

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

commit 73630a0f850bcb67af8546347ccd164817fec437
Author: Yurii Tykhun <ty...@gmail.com>
AuthorDate: Thu Jul 1 14:14:09 2021 +0300

    [DATALAB-2483] added none option for custom image
---
 .../create-environment/create-environment.component.html           | 7 +++++++
 1 file changed, 7 insertions(+)

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 2f9af7a..289403e 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
@@ -105,6 +105,13 @@
               <mat-label>Select image</mat-label>
               <mat-select formControlName="notebook_image_name" panelClass="create-resources-dialog scrolling" disableOptionCentering>
                 <mat-option 
+                  *ngIf="currentTemplate?.image !== 'docker.datalab-deeplearning'" 
+                  [value]="null" 
+                  (click)="setImage(null)"
+                >
+                  None
+                </mat-option>
+                <mat-option 
                   *ngFor="let image of images" 
                   [value]="image?.name" 
                   (click)="setImage(image)"

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