Is it possible to append a stream response to a select? I’m not able to insert a turbo-frame between the select and their options and having the frame tag outside the select leads to this:
<turbo-frame>
<select>
<option>original</option>
<option>original</option>
</select>
<option>appended from stream</option>
</turbo-frame>
I’m guessing I could build it myself by listening for Turbo events and doing it manually or appending the response to a hidden list somewhere and making the select sync with that list, but is there a native Turbo way to do this?
Thanks!