solid
solid copied to clipboard
A declarative, efficient, and flexible JavaScript library for building user interfaces.
### Describe the bug I understood the last passed prop win on multiple identical props passed. But it does not work for something like `on:change` [See play here](https://playground.solidjs.com/anonymous/8911364f-e059-4a3b-99f0-35b9afbeb994) I think...
### Describe the bug basically the title, if i use dynamic property in `style` it resolves to `undefined` in ssr (but works correctly in csr), leading to a fouc ###...
I'm getting the warning: > You appear to have multiple instances of Solid. This can lead to unexpected behavior. I don't think there's actually any issue in my case. The...
### Describe the bug ``` function Test () { let i = 'javascript:alert(1);' return ( ) } ``` When setting javascript:alert(1) on the iframe's src, an XSS attack will be...
### Describe the bug Suppose you have the following `Post` component, which uses a resource to load a user: ```jsx async function loadPost(id) { await new Promise((resolve) => setTimeout(resolve, 10));...
fix "Maximum call stack size exceeded" on `resolveChildren`s `results.push.apply(results, result)`
## Summary Related to https://github.com/solidjs/solid/issues/2542 What happens is that the `children` helper crashes when trying to `results.push.apply(results, [149k items])`, as it overflows the max amount of arguments a function can...
### Describe the bug I've been developing a rewrite of a react codebase for analyzing logs for Stardew Valley, and in trying to get something from my log rendering at...
### Describe the bug I am using a monorepo and have a problem importing components into my application. Up until `solid-js v1.9.5` everything worked fine in my repository. But whenever...
### Describe the bug I found that `classList` (and possibly other HTML attributes) causes unnecessary re-runs. In the following code, `createEffect` only reruns when `v()` changes (I manually examined `w.vs`)....
### Describe the bug When testing compatibility with older browser versions, I found that canvas elements created via JSX cannot obtain a WebGL context properly. The following three methods of...