We have a button component like:
<foobar-core-button
variant="secondary"
id="back-to-home"
name="back-to-home"
onClick="location.reload()"
class="helix-anchor--primary"
>
<foobar-core-content>
Back to Home
</foobar-core-content>
</foobar-core-button>
And we would like to click on the button in editor mode in order to update the text. But the onClick is actually refreshing the page.
Is there a way to stop that click only in editor mode?
Thank you,