Updated Branches: refs/heads/branch-4.0 b2858ab6d -> 1cce35c9c
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/1cce35c9 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/1cce35c9 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/1cce35c9 Branch: refs/heads/branch-4.0 Commit: 1cce35c9cd23427ce87ac55df091d0b7e673c740 Parents: b2858ab Author: Rohini Palaniswamy <[email protected]> Authored: Thu Jan 30 12:21:37 2014 -0800 Committer: Rohini Palaniswamy <[email protected]> Committed: Thu Jan 30 12:21: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/1cce35c9/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 2511178..9311dd6 100644 --- a/webapp/src/main/webapp/oozie-console.js +++ b/webapp/src/main/webapp/oozie-console.js @@ -597,6 +597,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',
