You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by pi...@apache.org on 2021/10/01 12:51:05 UTC

[atlas] branch master updated (a0e08b5 -> 71fd771)

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

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


    from a0e08b5  ATLAS-4351 : Maven-jetty throwing warnings when running Integration tests for conflicting jars in classpath
     new dbdc422  ATLAS-4441:#2 UI , Regression, Business Metadata : Unable to add alphanumeric to BM attribute of type string, fixed
     new 71fd771  ATLAS-4439: UI: (New UI)(Firefox) Download import template icon is misaligned, 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:
 .../js/views/business_metadata/CreateBusinessMetadataLayoutView.js     | 2 +-
 dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js   | 2 +-
 dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js       | 2 +-
 dashboardv3/public/css/scss/leftsidebar.scss                           | 3 ++-
 .../js/views/business_metadata/CreateBusinessMetadataLayoutView.js     | 2 +-
 dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js   | 2 +-
 dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js       | 2 +-
 7 files changed, 8 insertions(+), 7 deletions(-)

[atlas] 02/02: ATLAS-4439: UI: (New UI)(Firefox) Download import template icon is misaligned, fixed

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

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

commit 71fd77129e91d05dd3ec582bc20968c1993ef905
Author: prasad pawar <pr...@freestoneinfotech.com>
AuthorDate: Thu Sep 30 13:26:59 2021 +0530

    ATLAS-4439: UI: (New UI)(Firefox) Download import template icon is misaligned, fixed
    
    Signed-off-by: Pinal Shah <pi...@freestoneinfotech.com>
---
 dashboardv3/public/css/scss/leftsidebar.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dashboardv3/public/css/scss/leftsidebar.scss b/dashboardv3/public/css/scss/leftsidebar.scss
index 44235ba..68a6f79 100644
--- a/dashboardv3/public/css/scss/leftsidebar.scss
+++ b/dashboardv3/public/css/scss/leftsidebar.scss
@@ -189,7 +189,7 @@
 
         .dropdown-menu {
             min-width: 182px;
-            left: -155px;
+            left: -170px;
 
             &>li {
                 padding: 3px 15px;
@@ -440,6 +440,7 @@ span.tree-tooltip {
 
 .tree-droupdown {
     left: -190px !important;
+    width: 218px;
 
     span a {
         padding: 0px !important;

[atlas] 01/02: ATLAS-4441:#2 UI , Regression, Business Metadata : Unable to add alphanumeric to BM attribute of type string, fixed

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

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

commit dbdc4225706ff40b0bc1a81a6d8cdc4a93fe53ae
Author: prasad pawar <pr...@freestoneinfotech.com>
AuthorDate: Fri Oct 1 11:16:38 2021 +0530

    ATLAS-4441:#2 UI , Regression, Business Metadata : Unable to add alphanumeric to BM attribute of type string, fixed
    
    Signed-off-by: Pinal Shah <pi...@freestoneinfotech.com>
---
 .../js/views/business_metadata/CreateBusinessMetadataLayoutView.js      | 2 +-
 dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js    | 2 +-
 dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js        | 2 +-
 .../js/views/business_metadata/CreateBusinessMetadataLayoutView.js      | 2 +-
 dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js    | 2 +-
 dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js        | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dashboardv2/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js b/dashboardv2/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
index 4957002..21bb663 100644
--- a/dashboardv2/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
+++ b/dashboardv2/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
@@ -292,7 +292,7 @@ define(['require',
                         data: this.json,
                         success: function(model, response) {
                             Utils.notifySuccess({
-                                content: "One or more Business Metadada attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
+                                content: "One or more Business Metadata attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
                             });
                             if (model.businessMetadataDefs && model.businessMetadataDefs.length) {
                                 that.selectedBusinessMetadata.set(model.businessMetadataDefs[0]);
diff --git a/dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js b/dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js
index 254c8ac..ff28506 100644
--- a/dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js
+++ b/dashboardv2/public/js/views/entity/EntityBusinessMetaDataItemView.js
@@ -233,7 +233,7 @@ define(['require',
                             multiple: selectEl.data("multi"),
                             createTag: function(params) {
                                 var option = params.term;
-                                if ($.isNumeric(option)) {
+                                if ($.isNumeric(option) || (typeName === "array<string>" && _.isString(option))) {
                                     return {
                                         id: option,
                                         text: option
diff --git a/dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js b/dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js
index 3e61f3a..213e7cc 100644
--- a/dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js
+++ b/dashboardv2/public/js/views/entity/EntityBusinessMetaDataView.js
@@ -191,7 +191,7 @@ define([
                 type: "POST",
                 success: function(data) {
                     Utils.notifySuccess({
-                        content: "One or more Business Metadada attributes" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
+                        content: "One or more Business Metadata attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
                     });
                     that.entity.businessAttributes = data;
                     that.ui.businessMetadataTree.html("");
diff --git a/dashboardv3/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js b/dashboardv3/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
index 4957002..21bb663 100644
--- a/dashboardv3/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
+++ b/dashboardv3/public/js/views/business_metadata/CreateBusinessMetadataLayoutView.js
@@ -292,7 +292,7 @@ define(['require',
                         data: this.json,
                         success: function(model, response) {
                             Utils.notifySuccess({
-                                content: "One or more Business Metadada attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
+                                content: "One or more Business Metadata attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
                             });
                             if (model.businessMetadataDefs && model.businessMetadataDefs.length) {
                                 that.selectedBusinessMetadata.set(model.businessMetadataDefs[0]);
diff --git a/dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js b/dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js
index 5202d01..913cc0f 100644
--- a/dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js
+++ b/dashboardv3/public/js/views/entity/EntityBusinessMetaDataItemView.js
@@ -234,7 +234,7 @@ define(['require',
                             multiple: selectEl.data("multi"),
                             createTag: function(params) {
                                 var option = params.term;
-                                if ($.isNumeric(option)) {
+                                if ($.isNumeric(option) || (typeName === "array<string>" && _.isString(option))) {
                                     return {
                                         id: option,
                                         text: option
diff --git a/dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js b/dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js
index 0735cf4..81db893 100644
--- a/dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js
+++ b/dashboardv3/public/js/views/entity/EntityBusinessMetaDataView.js
@@ -191,7 +191,7 @@ define([
                 type: "POST",
                 success: function(data) {
                     Utils.notifySuccess({
-                        content: "One or more Business Metadada attributes" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
+                        content: "One or more Business Metadata attribute" + Messages.getAbbreviationMsg(true, 'editSuccessMessage')
                     });
                     that.entity.businessAttributes = data;
                     that.ui.businessMetadataTree.html("");