You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2019/06/04 06:03:56 UTC

[atlas] branch master updated (2f461b4 -> af25456)

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

nixon pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git.


    from 2f461b4  ATLAS-3226: Add QueryText for hive_table and hive_db for Impala integration
     new eced9a6  ATLAS-3248 UI: Number of Search Page results not matching set Page limit.
     new af25456  ATLAS-3228 UI: Dots appearing in select column in Search 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.


Summary of changes:
 dashboardv2/public/css/scss/table.scss                       | 9 ++++++++-
 dashboardv2/public/js/utils/TableLayout.js                   | 1 +
 dashboardv2/public/js/views/search/SearchResultLayoutView.js | 7 ++++---
 3 files changed, 13 insertions(+), 4 deletions(-)


[atlas] 02/02: ATLAS-3228 UI: Dots appearing in select column in Search page.

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

nixon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit af25456d7a2110d27295c1249cec3795bfb5b51e
Author: gutkaBinit <bi...@gmail.com>
AuthorDate: Mon May 27 16:48:56 2019 +0530

    ATLAS-3228 UI: Dots appearing in select column in Search page.
    
    Signed-off-by: nixonrodrigues <ni...@apache.org>
---
 dashboardv2/public/css/scss/table.scss | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dashboardv2/public/css/scss/table.scss b/dashboardv2/public/css/scss/table.scss
index 63d88b8..7ce6b66 100644
--- a/dashboardv2/public/css/scss/table.scss
+++ b/dashboardv2/public/css/scss/table.scss
@@ -74,8 +74,15 @@ tr.empty {
         white-space: normal;
     }
 
-    .select-all-header-cell {
+    th.renderable.html-cell,
+    td.renderable.html-cell {
+        max-width: 250px;
+    }
+
+    .select-all-header-cell,
+    .select-row-cell {
         width: 42px;
+        text-overflow: clip;
     }
 
     thead {


[atlas] 01/02: ATLAS-3248 UI: Number of Search Page results not matching set Page limit.

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

nixon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit eced9a6945934a9930de137976b744ca2aeacec3
Author: gutkaBinit <bi...@gmail.com>
AuthorDate: Thu May 30 12:27:06 2019 +0530

    ATLAS-3248 UI: Number of Search Page results not matching set Page limit.
    
    Signed-off-by: nixonrodrigues <ni...@apache.org>
---
 dashboardv2/public/js/utils/TableLayout.js                   | 1 +
 dashboardv2/public/js/views/search/SearchResultLayoutView.js | 7 ++++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/dashboardv2/public/js/utils/TableLayout.js b/dashboardv2/public/js/utils/TableLayout.js
index abb32fa..d8b52af 100644
--- a/dashboardv2/public/js/utils/TableLayout.js
+++ b/dashboardv2/public/js/utils/TableLayout.js
@@ -273,6 +273,7 @@ define(['require',
                 }, this);
                 this.listenTo(this, "grid:refresh", function() {
                     if (this.grid) {
+                        this.grid.collection.fullCollection.reset(this.collection.entities, { silent: true });
                         this.grid.trigger("backgrid:refresh");
                     }
                 });
diff --git a/dashboardv2/public/js/views/search/SearchResultLayoutView.js b/dashboardv2/public/js/views/search/SearchResultLayoutView.js
index eab8b50..50dbbb7 100644
--- a/dashboardv2/public/js/views/search/SearchResultLayoutView.js
+++ b/dashboardv2/public/js/views/search/SearchResultLayoutView.js
@@ -267,7 +267,7 @@ define(['require',
                         el: this.ui.colManager
                     },
                     gridOpts: {
-                        emptyText: 'No Record found!',
+                        emptyText: 'No Records found!',
                         className: 'table table-hover backgrid table-quickMenu colSort'
                     },
                     filterOpts: {},
@@ -425,12 +425,13 @@ define(['require',
                             return;
                         }
                         if (isPostMethod) {
-                            that.searchCollection.referredEntities = dataOrCollection.referredEntities;
                             Utils.findAndMergeRefEntity({
                                 attributeObject: dataOrCollection.entities,
                                 referredEntities: dataOrCollection.referredEntities
                             });
-                            that.searchCollection.fullCollection.reset(dataOrCollection.entities, { silent: false });
+                            that.searchCollection.referredEntities = dataOrCollection.referredEntities;
+                            that.searchCollection.entities = dataOrCollection.entities;
+                            that.searchCollection.reset(dataOrCollection.entities, { silent: true });
                         }