Adam Killander
Results
1
comments of
Adam Killander
This issue is still present in @stencil/core@^4.7.2 We worked around it by checking after render and adding 'form' with `setAttribute` function. ``` componentDidRender() { if (this.form) { this.hostElement.querySelector('button').setAttribute('form', this.form); }...