Updated Branches: refs/heads/master 38e43325e -> b220ed6e3
OZIE-1626 pig action pop-up is not working properly in UI (puru via rohini) Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/b220ed6e Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/b220ed6e Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/b220ed6e Branch: refs/heads/master Commit: b220ed6e38e7aac2423f87c000aeef97503944bf Parents: 38e4332 Author: Rohini Palaniswamy <[email protected]> Authored: Thu Jan 30 12:20:37 2014 -0800 Committer: Rohini Palaniswamy <[email protected]> Committed: Thu Jan 30 12:20:37 2014 -0800 ---------------------------------------------------------------------- webapp/src/main/webapp/oozie-console.js | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/b220ed6e/webapp/src/main/webapp/oozie-console.js ---------------------------------------------------------------------- diff --git a/webapp/src/main/webapp/oozie-console.js b/webapp/src/main/webapp/oozie-console.js index 7999d35..a6c343e 100644 --- a/webapp/src/main/webapp/oozie-console.js +++ b/webapp/src/main/webapp/oozie-console.js @@ -697,6 +697,13 @@ function jobDetailsPopup(response, request) { } } }); + if (count == 1) { + var note = new Ext.form.TextField({ + fieldLabel : 'Child Job', + value : 'n/a' + }); + urlUnit.add(note); + } } else { var note = new Ext.form.TextField({ fieldLabel : 'Child Job',
