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 2021/05/13 07:30:38 UTC

[atlas] branch branch-2.0 updated (6f45f5f -> 8dd75c3)

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

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


    from 6f45f5f  ATLAS-4284: Hive pruned tables are ignored and not pruned
     new 3c9cbd5  ATLAS-4280:UI:Save button is enabled when Classification description is updated with original value. fixed
     new 8dd75c3  ATLAS-4281: Atlas UI: Tasks tab refresh button is seen on other tabs of entity detail page, fixed

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/tab.scss                            | 3 +--
 dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js | 3 ++-
 dashboardv3/public/css/scss/tab.scss                            | 3 +--
 dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js | 3 ++-
 4 files changed, 6 insertions(+), 6 deletions(-)

[atlas] 02/02: ATLAS-4281: Atlas UI: Tasks tab refresh button is seen on other tabs of entity detail page, fixed

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

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

commit 8dd75c3d99cf50add6a15d03529f378d041d86be
Author: prasad pawar <pr...@freestoneinfotech.com>
AuthorDate: Wed May 12 12:21:18 2021 +0530

    ATLAS-4281: Atlas UI: Tasks tab refresh button is seen on other tabs of entity detail page, fixed
    
    Signed-off-by: nixonrodrigues <ni...@apache.org>
    (cherry picked from commit bac159f46502233081bcdda1a75c9f71197b31dd)
---
 dashboardv2/public/css/scss/tab.scss | 3 +--
 dashboardv3/public/css/scss/tab.scss | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dashboardv2/public/css/scss/tab.scss b/dashboardv2/public/css/scss/tab.scss
index 9c85587..c164b47 100644
--- a/dashboardv2/public/css/scss/tab.scss
+++ b/dashboardv2/public/css/scss/tab.scss
@@ -193,10 +193,9 @@ ul.tabs li.tab {
 }
 
 .pending-task {
-    padding: 10px 20px 15px 20px !important;
 
     .pending-refresh-btn {
-        margin-bottom: 10px;
+        margin-bottom: 15px;
     }
 
     table tr th {
diff --git a/dashboardv3/public/css/scss/tab.scss b/dashboardv3/public/css/scss/tab.scss
index 9c85587..c164b47 100644
--- a/dashboardv3/public/css/scss/tab.scss
+++ b/dashboardv3/public/css/scss/tab.scss
@@ -193,10 +193,9 @@ ul.tabs li.tab {
 }
 
 .pending-task {
-    padding: 10px 20px 15px 20px !important;
 
     .pending-refresh-btn {
-        margin-bottom: 10px;
+        margin-bottom: 15px;
     }
 
     table tr th {

[atlas] 01/02: ATLAS-4280:UI:Save button is enabled when Classification description is updated with original value. fixed

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

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

commit 3c9cbd5cd98455428ddaa56aca0604b68ab18b3a
Author: prasad pawar <pr...@freestoneinfotech.com>
AuthorDate: Wed May 12 12:33:17 2021 +0530

    ATLAS-4280:UI:Save button is enabled when Classification description is updated with original value. fixed
    
    Signed-off-by: nixonrodrigues <ni...@apache.org>
    (cherry picked from commit c0cf04f7ece4af3734d1285c4385b46f8e556020)
---
 dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js | 3 ++-
 dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js b/dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js
index 4c40389..9b8b90f 100644
--- a/dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js
+++ b/dashboardv2/public/js/views/tag/TagAttributeDetailLayoutView.js
@@ -302,8 +302,9 @@ define(['require',
                         okText: 'Save',
                         allowCancel: true,
                     }).open();
-                    view.ui.description.on('keyup', function(e) {
+                    view.ui.description.on('keyup input', function(e) {
                         that.textAreaChangeEvent(view);
+                        e.stopPropagation();
                     });
                     that.modal.$el.find('button.ok').prop('disabled', true);
                     that.modal.on('ok', function() {
diff --git a/dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js b/dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js
index 20220f2..6e10155 100644
--- a/dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js
+++ b/dashboardv3/public/js/views/tag/TagAttributeDetailLayoutView.js
@@ -306,8 +306,9 @@ define(['require',
                         okText: 'Save',
                         allowCancel: true,
                     }).open();
-                    view.ui.description.on('keyup', function(e) {
+                    view.ui.description.on('keyup input', function(e) {
                         that.textAreaChangeEvent(view);
+                        e.stopPropagation();
                     });
                     that.modal.$el.find('button.ok').prop('disabled', true);
                     that.modal.on('ok', function() {