You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dg...@apache.org on 2020/02/27 12:01:55 UTC

[incubator-dlab] branch develop updated: small style fix (#622)

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 5ac08a0  small style fix (#622)
5ac08a0 is described below

commit 5ac08a0fd0a9229de28a039987e5bca301e1db84
Author: Dmytro Gnatyshyn <42...@users.noreply.github.com>
AuthorDate: Thu Feb 27 14:01:48 2020 +0200

    small style fix (#622)
---
 .../administration/project/project-list/project-list.component.html | 2 +-
 .../src/app/reporting/reporting-grid/reporting-grid.component.html  | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/project/project-list/project-list.component.html b/services/self-service/src/main/resources/webapp/src/app/administration/project/project-list/project-list.component.html
index a2fc6cf..3983ab1 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/project/project-list/project-list.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/project/project-list/project-list.component.html
@@ -24,7 +24,7 @@
   </ng-container>
 
   <ng-container matColumnDef="groups">
-    <th mat-header-cell *matHeaderCellDef class="groups"> Groups </th>
+    <th mat-header-cell *matHeaderCellDef class="groups"> Group </th>
     <td mat-cell *matCellDef="let element" class="groups">
       <mat-chip-list>
         <mat-chip *ngFor="let group of element.groups">{{ group }}</mat-chip>
diff --git a/services/self-service/src/main/resources/webapp/src/app/reporting/reporting-grid/reporting-grid.component.html b/services/self-service/src/main/resources/webapp/src/app/reporting/reporting-grid/reporting-grid.component.html
index 1f5513d..bae8593 100644
--- a/services/self-service/src/main/resources/webapp/src/app/reporting/reporting-grid/reporting-grid.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/reporting/reporting-grid/reporting-grid.component.html
@@ -31,7 +31,7 @@
         </button>
       </th>
       <td mat-cell *matCellDef="let element"> {{element[DICTIONARY[PROVIDER].billing.dlabId]}} </td>
-      <td mat-footer-cell *matFooterCellDef class="table-footer"> Total </td>
+      <td mat-footer-cell *matFooterCellDef class="table-footer"></td>
     </ng-container>
 
     <ng-container matColumnDef="user">
@@ -135,10 +135,10 @@
       </th>
 
       <td mat-cell *matCellDef="let element">
-        {{ element[DICTIONARY[PROVIDER].billing.cost] }} {{ element[DICTIONARY[PROVIDER].billing.currencyCode] }}
+        {{ element[DICTIONARY[PROVIDER].billing.cost].toFixed(2) }} {{ element[DICTIONARY[PROVIDER].billing.currencyCode] }}
       </td>
       <td mat-footer-cell *matFooterCellDef class="table-footer">
-        <span *ngIf="reportData?.length">{{ fullReport['cost_total'] }}
+        Total <span *ngIf="reportData?.length"> {{ fullReport['cost_total'] }}
           {{ fullReport[DICTIONARY[PROVIDER].billing.currencyCode] }}</span>
       </td>
     </ng-container>


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