What is the URL where the issue is happening
https://roadmap.sh/devops
What browsers are you seeing the problem on?
No response
Describe the Bug
Clicking the Octopus Deploy node on the DevOps roadmap opens the side panel, but the content displayed is for Drone instead.
Steps to reproduce
- Visit https://roadmap.sh/devops
- Click the Octopus Deploy node (under CI/CD tools)
- Side panel renders Drone's description and links
Root cause
Two markdown files in src/data/roadmaps/devops/content/ share the same node ID suffix:
octopus-deploy@TsXFx1wWikVBVoFUUDAMx.md
drone@TsXFx1wWikVBVoFUUDAMx.md
The string after @ is the unique node ID the frontend uses to look up content. When two files share an ID, only one resolves, and Drone is currently winning the lookup.
Suggested fix
Generate a new unique ID for one of the two nodes (likely Octopus Deploy, since it appears to have been copy-pasted from the Drone entry), update the corresponding node ID in the roadmap's JSON definition, and rename the markdown file to match.
Output from browser console (if any)
No response
Participation
What is the URL where the issue is happening
https://roadmap.sh/devops
What browsers are you seeing the problem on?
No response
Describe the Bug
Clicking the Octopus Deploy node on the DevOps roadmap opens the side panel, but the content displayed is for Drone instead.
Steps to reproduce
Root cause
Two markdown files in
src/data/roadmaps/devops/content/share the same node ID suffix:octopus-deploy@TsXFx1wWikVBVoFUUDAMx.mddrone@TsXFx1wWikVBVoFUUDAMx.mdThe string after
@is the unique node ID the frontend uses to look up content. When two files share an ID, only one resolves, and Drone is currently winning the lookup.Suggested fix
Generate a new unique ID for one of the two nodes (likely Octopus Deploy, since it appears to have been copy-pasted from the Drone entry), update the corresponding node ID in the roadmap's JSON definition, and rename the markdown file to match.
Output from browser console (if any)
No response
Participation