[BUG] SVG filter ids which are dynamically auto-named in client not showing auto-named value in binding

Embedded SVGs that have filters have their id's automatically renamed in the client to make each filter id name unique.

If I want to apply filters dynamically to components, I'm unable to because I don't know what the filter's id will be renamed to, as binding to the filter's id does not update to its renamed value in the browser, it stays at the value it is in the designer.

e.g.
Designer:
image

Client (browser):
image

Binding to elements[0]['elements'][1]['id'] will return desaturate in the browser, not s0_1-desaturate as I would have expected.
Without knowing the id value in the browser, i'm unable to dynamically apply the filter.

They did this because there were issues with templates and embeded views using the same svg.
It might be possible to reconstruct this prefix with self.view.id. or something
See if you can match a patern in the view id and te prefix, or hope someone of IA shares us the way its generated