martinweiler opened a new issue, #2165:
URL: https://github.com/apache/incubator-kie-issues/issues/2165

   When attempting to view the annotated svg for a process instance [1] in the 
browser, the returned svg content is rendered as a blank image:
   <img width="3156" height="1687" alt="Image" 
src="https://github.com/user-attachments/assets/65c80615-78ef-4d7d-af80-7b1e483cdcf1";
 />
   
   The svg content is returned as expected:
   <img width="3156" height="1687" alt="Image" 
src="https://github.com/user-attachments/assets/3ace7413-68bf-42de-b313-f3d525735d0b";
 />
   
   The problem is the namespace handling at the beginning of the annotated svg 
content:
   ```
   <defs xmlns=""/><g xmlns="" transform="matrix(1,0,0,1,0,0)">
   ```
   
   The correct xml would be:
   ```
   <defs/><g transform="matrix(1,0,0,1,0,0)">
   ```
   
   [1] 
http://localhost:8080/svg/processes/hiring/instances/f7cf5c11-1e53-4123-a33a-4e6c1592fb5b


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to