conductor-oss / conductor-oss/conductor
UI: The workflow name is not encoded in the URL when obtaining the definition.
- Dominant language
- Java
- Stars
- 32.2k
- Forks
- 1k
- Avg merge
- 2d 3h
- Merged PRs (30d)
- 37
Description
### Describe the bug
If my workflow name contains permitted characters such as #, accessing its definition takes me to a path like this:
`/workflowDef/first#second`
This below searches for the workflow first by calling /workflowDef/first
However, if you use URL encoding, it works:
`/workflowDef/first%23second`
This below searches for the workflow first by calling /workflowDef/first%23second
Contributor guide
Research direction
Start at the UI entry point that constructs the `/workflowDef/{workflowName}` URL and reproduce the issue with a workflow name containing `#`. Trace how the name is placed in the path, then verify that the generated request preserves the complete name through URL encoding and that ordinary workflow names still work.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, react
- Domain
- frontend, web-dev
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100