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

incubator-atlas git commit: ATLAS-1595:Create Entity in UI : All attributes are not listed for hdfs_path.

Repository: incubator-atlas
Updated Branches:
  refs/heads/master 525082baa -> 9e578251a


ATLAS-1595:Create Entity in UI : All attributes are not listed for hdfs_path.


Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/9e578251
Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/9e578251
Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/9e578251

Branch: refs/heads/master
Commit: 9e578251af355481dbb1f75a358cb3e36f365ea6
Parents: 525082b
Author: kalyanikk <ka...@freestoneinfotech.com>
Authored: Fri Mar 3 17:42:21 2017 +0530
Committer: kevalbhatt <kb...@apache.org>
Committed: Fri Mar 3 17:56:21 2017 +0530

----------------------------------------------------------------------
 dashboardv2/public/js/views/entity/CreateEntityLayoutView.js | 3 ++-
 release-log.txt                                              | 8 ++++++++
 2 files changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/9e578251/dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
----------------------------------------------------------------------
diff --git a/dashboardv2/public/js/views/entity/CreateEntityLayoutView.js b/dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
index d6711aa..21db8f8 100644
--- a/dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
+++ b/dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
@@ -360,7 +360,8 @@ define(['require',
                         this.ui.toggleRequired.prop('checked', true);
                     } else {
                         this.ui.entityInputData.find('fieldset').each(function() {
-                            if (!$(this).find('div').hasClass('false')) {
+                            // if checkbox is alredy selected then dont hide
+                            if (!$(this).find('div').hasClass('false') && !that.ui.toggleRequired.is(":checked")) {
                                 $(this).hide();
                             }
                         });

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/9e578251/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index d25e462..b36724f 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -9,6 +9,14 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
 ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
 
 ALL CHANGES:
+ATLAS-1595:Create Entity in UI : All attributes are not listed for hdfs_path. (Kalyanikashikar via kevalbhatt)
+ATLAS-1618: updated export to support scope option - full/connected
+ATLAS-1621: fixed webapp integration tests failures
+ATLAS-1622: Full text mapping using v2 model
+ATLAS-1617: Update error code pattern to ATLAS-nnn-mm-xxx
+ATLAS-1613: fix for bigdecimal value handling to avoid casting to long (#2 - fix for unittest failures)
+ATLAS-1613: fix for bigdecimal value handling to avoid casting to long; fixed incorrect HTTP status code for an error
+ATLAS-1614: updated v1 partial-update to perform attribute validation
 ATLAS-695: Add Titan 1.0.0 support to Atlas (guptaneeru via jnhagelberg)
 ATLAS-1552: automatic update of inverse references in V2 code path (dkantor)
 ATLAS-1603: fix to handle null value for object_id type attributes (mneethiraj via kevalbhatt)