You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/12/06 01:47:18 UTC

[GitHub] [dolphinscheduler] Sky-Gu opened a new issue, #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Sky-Gu opened a new issue, #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   As the title
   
   ![image](https://user-images.githubusercontent.com/5527811/205788128-36fd96bf-099e-48a1-8ef3-496c7deba9e9.png)
   
   
   ### What you expected to happen
   
   Restore Function
    
   
   ### How to reproduce
   
   Version 3.1.1, view the Gantt chart of the workflow instance
    
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.1.x
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] klboke commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
klboke commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1372058118

   
   > Sorry to say that I couldn't reproduce the issue. Could you give me more details about the issue?
   
   @calvinjiang  I also had a problem with Gantt not displaying, the version is v3.1.2 , The key code is as follows:
   ```ts
       props.seriesData.forEach(function (task, index) {
         const start = Math.floor(task.startDate[0] / 1000) * 1000
         const end = Math.floor(task.endDate[0] / 1000) * 1000
         minTime = minTime < start ? minTime : start
         maxTime = maxTime > end ? maxTime : end
         // debug print
         console.log(data)
         console.log(task)
         data[task.status].push({
           name: task.name,
           value: [index, start, end, end - start],
           itemStyle: {
             color: state[task.status as ITaskState].color
           }
         })
       })
   
   ```
   <img width="1439" alt="image" src="https://user-images.githubusercontent.com/18591662/210762260-cc44f417-c76b-4348-bc58-39a883bcff59.png">
   <img width="1439" alt="image" src="https://user-images.githubusercontent.com/18591662/210762435-ab7b2e43-b938-49b1-a12b-674fd1339760.png">
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] fw19940314 commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "fw19940314 (via GitHub)" <gi...@apache.org>.
fw19940314 commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1413344314

   v3.1.3-release  issue still exists. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] mer2 commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
mer2 commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1370592658

   > 
   
   +1, version=3.1.2


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] calvinjiang commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
calvinjiang commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1361194381

   Sorry to say that I couldn't reproduce the issue. Could you give me more details about the issue? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] woxiangwoshi123 commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
woxiangwoshi123 commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1366436235

   > Sorry to say that I couldn't reproduce the issue. Could you give me more details about the issue?
   
   I also have the same problem, the Gantt chart shows a blank page, and opening F12 shows the same error. My version is 3.1.2.Hope you can fix it soon, thanks.
   <img width="1678" alt="Snipaste_2022-12-28_15-38-50" src="https://user-images.githubusercontent.com/32809232/209776359-d719a4ad-8fea-4dcc-bd85-0697c68e70ba.png">
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] woxiangwoshi123 commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "woxiangwoshi123 (via GitHub)" <gi...@apache.org>.
woxiangwoshi123 commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1484682183

   > v3.1.4-release issue still exists.
   yes
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] closed issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] closed issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available  
URL: https://github.com/apache/dolphinscheduler/issues/13109


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] GHxiaotan commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "GHxiaotan (via GitHub)" <gi...@apache.org>.
GHxiaotan commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1449189890

   v3.1.4-release issue still exists.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1552243219

   This issue has been automatically marked as stale because it has not had recent activity for 30 days. It will be closed in next 7 days if no further activity occurs.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] ChPi commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "ChPi (via GitHub)" <gi...@apache.org>.
ChPi commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1408053251

   duplicate of #11583 ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] Sky-Gu commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
Sky-Gu commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1364827638

   chrome version 108.0.5359.124 shows an error in the console.
   
   I also tried using firefox and safari,and the problem was the same.
    
   ![WX20221226-103839](https://user-images.githubusercontent.com/5527811/209492615-9e1c0a17-23e7-49a7-a66a-df5b3c7fd415.png)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1338612789

   Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can [join our slack](https://s.apache.org/dolphinscheduler-slack) and send your question to channel `#troubleshooting`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #13109: [Bug] [UI] The Gantt chart for the workflow instance is not available

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #13109:
URL: https://github.com/apache/dolphinscheduler/issues/13109#issuecomment-1577722534

   This issue has been closed because it has not received response for too long time. You could reopen it if you encountered similar problems in the future.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org