IGNITE-5147 Fixed generation of project structure view.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8be68138 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8be68138 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8be68138 Branch: refs/heads/ignite-5075 Commit: 8be68138c7911f2001eddd3c16cc968601e90777 Parents: 934f6ac Author: Vasiliy Sisko <[email protected]> Authored: Thu May 4 09:53:54 2017 +0700 Committer: Andrey Novikov <[email protected]> Committed: Thu May 4 09:53:54 2017 +0700 ---------------------------------------------------------------------- .../app/modules/states/configuration/summary/summary.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8be68138/modules/web-console/frontend/app/modules/states/configuration/summary/summary.controller.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/modules/states/configuration/summary/summary.controller.js b/modules/web-console/frontend/app/modules/states/configuration/summary/summary.controller.js index 0089528..71b5a82 100644 --- a/modules/web-console/frontend/app/modules/states/configuration/summary/summary.controller.js +++ b/modules/web-console/frontend/app/modules/states/configuration/summary/summary.controller.js @@ -276,7 +276,7 @@ export default [ } _.forEach(cache.domains, (domain) => { - if (!_.isEmpty(domain.keyFields)) { + if (domain.generatePojo && _.nonEmpty(domain.keyFields)) { if (JavaTypes.nonBuiltInClass(domain.keyType)) addClass(domain.keyType);
