This is an automated email from the ASF dual-hosted git repository.
kbhatt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new 389c25b ATLAS-4044: Added isIncomplete parameter in the entity
detail's property tab.
389c25b is described below
commit 389c25bcd05f05977750974db5cdc8dd44b581dc
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]>
---
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
});