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', ...@@ -79,7 +79,7 @@ define(['require',
highlightString = $(".atlas-header .global-search-container input.global-search").val(), highlightString = $(".atlas-header .global-search-container input.global-search").val(),
table = CommonViewFunction.propertyTable({ table = CommonViewFunction.propertyTable({
scope: this, scope: this,
valueObject: this.entity.attributes, valueObject: _.extend({ "isIncomplete": this.entity.isIncomplete }, this.entity.attributes),
attributeDefs: this.attributeDefs, attributeDefs: this.attributeDefs,
highlightString: highlightString highlightString: highlightString
}); });
......
...@@ -79,7 +79,7 @@ define(['require', ...@@ -79,7 +79,7 @@ define(['require',
highlightString = $(".atlas-header .global-search-container input.global-search").val(), highlightString = $(".atlas-header .global-search-container input.global-search").val(),
table = CommonViewFunction.propertyTable({ table = CommonViewFunction.propertyTable({
scope: this, scope: this,
valueObject: this.entity.attributes, valueObject: _.extend({ "isIncomplete": this.entity.isIncomplete }, this.entity.attributes),
attributeDefs: this.attributeDefs, attributeDefs: this.attributeDefs,
highlightString: highlightString 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