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/26 09:56:42 UTC

[incubator-datalab] branch DATALAB-2122 created (now e0b336c)

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

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


      at e0b336c  [DATALAB-2122]: Fixed filter on billing page

This branch includes the following new commits:

     new 270cbba  Merge branch 'develop' of github.com:apache/incubator-dlab into develop
     new e0b336c  [DATALAB-2122]: Fixed filter on billing page

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] 01/02: Merge branch 'develop' of github.com:apache/incubator-dlab 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-2122
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit 270cbba1b193fe65e967ada6e594bdab1f5b0a88
Merge: 2e9fb79 293efd8
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Fri Oct 23 16:25:39 2020 +0300

    Merge branch 'develop' of github.com:apache/incubator-dlab into develop

 .../exploratory/detail-dialog/detail-dialog.component.html         | 2 +-
 .../exploratory/detail-dialog/detail-dialog.component.scss         | 7 +++++++
 2 files changed, 8 insertions(+), 1 deletion(-)


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


[incubator-datalab] 02/02: [DATALAB-2122]: Fixed filter on billing page

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

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

commit e0b336c3281d70948171588646260b4328963696
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Mon Oct 26 11:55:07 2020 +0200

    [DATALAB-2122]: Fixed filter on billing page
---
 .../app/reports/reporting/reporting-grid/reporting-grid.component.ts    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/reports/reporting/reporting-grid/reporting-grid.component.ts b/services/self-service/src/main/resources/webapp/src/app/reports/reporting/reporting-grid/reporting-grid.component.ts
index 4782f71..61399fa 100644
--- a/services/self-service/src/main/resources/webapp/src/app/reports/reporting/reporting-grid/reporting-grid.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/reports/reporting/reporting-grid/reporting-grid.component.ts
@@ -106,7 +106,7 @@ export class ReportingGridComponent implements OnInit, AfterViewInit {
 
   private checkFilters() {
     this.isFilterChanged = JSON.stringify(this.filteredReportData) === JSON.stringify(this.previousFilterData);
-    this.isFilterSelected = Object.keys(this.filteredReportData).filter(v => this.filteredReportData[v].length > 0).length > 0;
+    this.isFilterSelected = Object.keys(this.filteredReportData).filter(v => this.filteredReportData[v] && this.filteredReportData[v].length > 0).length > 0;
   }
 
   refreshData(fullReport, report) {


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