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

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


The following commit(s) were added to refs/heads/develop by this push:
     new e5fd885  [DLAB-1943]: Small library fix
e5fd885 is described below

commit e5fd885c9d67a1031cadf2c06361eab249799950
Author: Dmytro_Gnatyshyn <[email protected]>
AuthorDate: Fri Jul 24 09:20:51 2020 +0300

    [DLAB-1943]: Small library fix
---
 .../exploratory/install-libraries/install-libraries.component.html      | 2 +-
 .../exploratory/install-libraries/install-libraries.component.ts        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.html
 
b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.html
index 96f2bd6..c05b6f9 100644
--- 
a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.html
+++ 
b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.html
@@ -75,7 +75,7 @@
                         <span [innerHTML]="item.name | highlight:query"></span>
                       </a>
                       <span *ngIf="item.isInSelectedList">{{ item.name }}
-                        <span *ngIf="item.version && item.version !== 'N/A' && 
item.isInstalled && !item.isInSelectedList">{{ item.version }}</span>
+<!--                        <span *ngIf="item.version && item.version !== 
'N/A' && item.isInstalled && !item.isInSelectedList">{{ item.version 
}}</span>-->
                       </span>
                       <strong *ngIf="item.isInSelectedList">selected
                         <i class="material-icons">done</i>
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 97e94f7..169156d 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
@@ -484,7 +484,7 @@ export class ErrorLibMessageDialogComponent {
 <!--  </mat-list>-->
 
   <div class="lib-list" *ngIf="data.type === 'added'">
-    <span class="strong dependency-title">Dependency: </span><span 
class="packeges" *ngFor="let pack of data.lib.add_pkgs">{{pack+', '}}</span>
+    <span class="strong dependency-title">Dependency: </span><span 
class="packeges" *ngFor="let pack of data.lib.add_pkgs; index as i">{{pack + (i 
!== data.lib.add_pkgs.length - 1 ? ', ' : '')}}</span>
   </div>
   <div class="lib-list" *ngIf="data.type === 'available'">
     <span class="strong">Available versions: 
</span>{{data.lib.available_versions.join(', ')}}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to