Commit 389c25bc by Deep Singh Committed by kevalbhatt

ATLAS-4044: Added isIncomplete parameter in the entity detail's property tab.

Signed-off-by: 's avatarkevalbhatt <kbhatt@apache.org>
parent 05d8dec6
......@@ -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
});
......
......@@ -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
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment