How to retreive workflow by id for debug

I get error in console giving me some workflow id, that’s good but how can I find it in weweb to fix ?

Capture d’écran 2024-01-25 à 08.59.15

If you go in the top menu More > Development > Show dev information, you will be able to see the workflow id at the top right.
CleanShot 2024-01-25 at 15.29.33

thanks you, this may be a solution, but I have hundreds of workflows, so I’m more looking for a search option if it exists

A hacky way can be to use this code in the console: Object.entries(wwLib.getEditorStore()._state.data.data.globalWorkflows).find(([k,v])=>(k==='youruid'))?.[1]?.name, but I’m sure there should be another way