This is an automated email from the ASF dual-hosted git repository.
kbhatt pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new a434c0a ATLAS-4044: Added isIncomplete parameter in the entity
detail's property tab.
a434c0a is described below
commit a434c0a6b6da1a60c29e86356a8f1b11d4ab9a5c
Author: Deep Singh <[email protected]>
AuthorDate: Tue Nov 24 01:43:02 2020 -0600
ATLAS-4044: Added isIncomplete parameter in the entity detail's property
tab.
Signed-off-by: kevalbhatt <[email protected]>
(cherry picked from commit 389c25bcd05f05977750974db5cdc8dd44b581dc)
---
dashboardv2/public/js/views/entity/EntityDetailTableLayoutView.js | 2 +-
dashboardv3/public/js/views/entity/EntityDetailTableLayoutView.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dashboardv2/public/js/views/entity/EntityDetailTableLayoutView.js
b/dashboardv2/public/js/views/entity/EntityDetailTableLayoutView.js
index 0a7d51a..a5b5262 100644
--- a/dashboardv2/public/js/views/entity/EntityDetailTableLayoutView.js
+++ b/dashboardv2/public/js/views/entity/EntityDetailTableLayoutView.js
@@ -79,7 +79,7 @@ define(['require',
highlightString = $(".atlas-header
.global-search-container input.global-search").val(),
table = CommonViewFunction.propertyTable({
scope: this,
- valueObject: this.entity.attributes,
+ valueObject: _.extend({ "isIncomplete":
this.entity.isIncomplete }, this.entity.attributes),
attributeDefs: this.attributeDefs,
highlightString: highlightString
});
diff --git a/dashboardv3/public/js/views/entity/EntityDetailTableLayoutView.js
b/dashboardv3/public/js/views/entity/EntityDetailTableLayoutView.js
index 0a7d51a..a5b5262 100644
--- a/dashboardv3/public/js/views/entity/EntityDetailTableLayoutView.js
+++ b/dashboardv3/public/js/views/entity/EntityDetailTableLayoutView.js
@@ -79,7 +79,7 @@ define(['require',
highlightString = $(".atlas-header
.global-search-container input.global-search").val(),
table = CommonViewFunction.propertyTable({
scope: this,
- valueObject: this.entity.attributes,
+ valueObject: _.extend({ "isIncomplete":
this.entity.isIncomplete }, this.entity.attributes),
attributeDefs: this.attributeDefs,
highlightString: highlightString
});