obesecoder
obesecoder
SSolidJS
Created by obesecoder on 6/18/2024 in #support
DOMException *sometimes* after changing element order
That does work thank you --- Also found after posting this that if I used straight js array mapping instead of <For/> that also seem to have fixed my issue
{!data.loading && data().map(item => (
<tr>
<td>{item.id}</td>
<td>{item.uid}</td>
<td>{item.city}</td>
<td>{item.street_name}</td>
<td>{item.street_address}</td>
</tr>
))}
{!data.loading && data().map(item => (
<tr>
<td>{item.id}</td>
<td>{item.uid}</td>
<td>{item.city}</td>
<td>{item.street_name}</td>
<td>{item.street_address}</td>
</tr>
))}
4 replies