Repository: incubator-atlas Updated Branches: refs/heads/master 515130ccd -> 4503955e1
ATLAS-1596: entity details page updated to list properties in consistent order Signed-off-by: Madhan Neethiraj <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/4503955e Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/4503955e Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/4503955e Branch: refs/heads/master Commit: 4503955e12dc46e8cce9f28e300b060f271f4a2a Parents: 515130c Author: kevalbhatt <[email protected]> Authored: Mon Feb 27 17:49:30 2017 +0530 Committer: Madhan Neethiraj <[email protected]> Committed: Mon Feb 27 08:53:37 2017 -0800 ---------------------------------------------------------------------- dashboardv2/public/js/utils/CommonViewFunction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/4503955e/dashboardv2/public/js/utils/CommonViewFunction.js ---------------------------------------------------------------------- diff --git a/dashboardv2/public/js/utils/CommonViewFunction.js b/dashboardv2/public/js/utils/CommonViewFunction.js index 6183e54..e1c22a1 100644 --- a/dashboardv2/public/js/utils/CommonViewFunction.js +++ b/dashboardv2/public/js/utils/CommonViewFunction.js @@ -126,7 +126,7 @@ define(['require', 'utils/Utils', 'modules/Modal', 'utils/Messages', 'utils/Enum } }); } - _.keys(valueObject).map(function(key) { + _.sortBy(_.keys(valueObject)).map(function(key) { key = _.escape(key) var keyValue = valueObject[key], valueOfArray = [];
