diff --git a/src/main/resources/static/css/main.css b/src/main/resources/static/css/main.css index 545fd7bd4..a168b1fa3 100644 --- a/src/main/resources/static/css/main.css +++ b/src/main/resources/static/css/main.css @@ -170,6 +170,11 @@ form .progress { } +#process-chart-container{ + position: relative; + width: 100%; +} + .subtab { overflow: hidden; border: 1px solid #ccc; diff --git a/src/main/resources/static/js/gw.history.js b/src/main/resources/static/js/gw.history.js index ab4ab7789..c07a7d346 100644 --- a/src/main/resources/static/js/gw.history.js +++ b/src/main/resources/static/js/gw.history.js @@ -291,8 +291,8 @@ GW.history = { content = // "

History Section

"+ - "
"+ - ""+ + "
"+ + ""+ "
" + content ; return content; diff --git a/src/main/resources/static/js/gw.process.js b/src/main/resources/static/js/gw.process.js index 844603b41..d0b5c4e60 100644 --- a/src/main/resources/static/js/gw.process.js +++ b/src/main/resources/static/js/gw.process.js @@ -879,7 +879,7 @@ GW.process = { */ history: function(pid, pname, ){ - GW.process.util.history(pid, "#process-history-container", 'process_history_table', + GW.process.util.history(pid, "#process-history-container", '#process_history_table', "#closeHistory", "main-process-info-history-tab", "main-process-info-history") },