Repository: atlas Updated Branches: refs/heads/master 1123f512c -> e05ed85fe
ATLAS-3023 UI - If any entity is deleted then its record is not displayed in Deleted Entities Statistics model Signed-off-by: nixonrodrigues <ni...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/e05ed85f Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/e05ed85f Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/e05ed85f Branch: refs/heads/master Commit: e05ed85fece9c6c3956a0e3f666f59e01a7b668c Parents: 1123f51 Author: Abhishek Kadam <abhishek.kada...@gmail.com> Authored: Mon Jan 7 15:51:38 2019 +0530 Committer: nixonrodrigues <ni...@apache.org> Committed: Tue Jan 8 17:54:57 2019 +0530 ---------------------------------------------------------------------- dashboardv2/public/js/views/common/Statistics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/atlas/blob/e05ed85f/dashboardv2/public/js/views/common/Statistics.js ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/views/common/Statistics.js b/dashboardv2/public/js/views/common/Statistics.js index 4ca1978..0f567e2 100644 --- a/dashboardv2/public/js/views/common/Statistics.js +++ b/dashboardv2/public/js/views/common/Statistics.js @@ -69,7 +69,7 @@ define(['require', var data = _.first(data.toJSON()), no_records = '<tr class="empty text-center"><td colspan="2"><span>No records found!</span></td></tr>', activeEntityTable = _.isEmpty(data.entity.entityActive) ? no_records : CommonViewFunction.propertyTable({ scope: that, valueObject: data.entity.entityActive }), - deleteEntityTable = _.isEmpty(data.entity.entityDelete) ? no_records : CommonViewFunction.propertyTable({ scope: that, valueObject: data.entity.entityDelete }); + deleteEntityTable = _.isEmpty(data.entity.entityDeleted) ? no_records : CommonViewFunction.propertyTable({ scope: that, valueObject: data.entity.entityDeleted }); that.ui.entityActive.html(activeEntityTable); that.ui.entityDelete.html(deleteEntityTable); }