Hi
So I have a forum where I replace the WelcomeHero view with an SVG with multiple clickable elements inside, that point to forum tags pages. The override
process is working fine, I add the flarum/common/components/Link
component around the clickable SVG groups :
<Link href={app.route('tag', {tags: 'value-chain'})} external={false}>
<g>
<circle class="color" cx="128.139" cy="375" r="75" />
<text>blabla</text>
</g>
</Link>
The link works but it triggers a full page reload.
A link outside the SVG works as expected. I have tried with external=false
with no success.
How do I force Mithril routing on it ? Is it configured to not operate on SVG ?
Best regards