Hello,
I'm on version 7.0.0.
Each time I acess the planning screen, an error pops-up saying :
"Technical issue occured possibly due to bad network connection.
Please try again.
If issue persists, please contact your administrator.
Contact your administrator.
(detailed error is reported in log file)"
The log shows nothing on this matter and the planning screen seems to work properly.
Thanks
This issue has already been identified.
It is ticket #3270
Fix is to move line 642 in /view/js/jsGantt.js after line 643, this way, from :
if (vList[vTask].getIsOnCriticalPath()=='1' && vList.getIsOnCriticalPath()=='1') color=vCriticalPathColor;
if(vTask!=null && vList[vTask].getVisible()==1 && vList.getVisible()==1) {
to
if(vTask!=null && vList[vTask].getVisible()==1 && vList.getVisible()==1) {
if (vList[vTask].getIsOnCriticalPath()=='1' && vList.getIsOnCriticalPath()=='1') color=vCriticalPathColor;
We'll publish patched version soon