conductor icon indicating copy to clipboard operation
conductor copied to clipboard

UI: The workflow name is not encoded in the URL when obtaining the definition.

Open JCHacking opened this issue 5 months ago • 0 comments

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

JCHacking avatar Jul 24 '25 07:07 JCHacking