You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<input type="range" value={0.5} max={1} step={1}/> also gives a different result (value evaluates to 1 as step is 1 by default and value was set before step) than <input type="range" step={1} max={1} value={0.5}/>, is this intended?
Describe the bug
<input type=file bind:files>
works.<input bind:files type=file>
doesn't. Via Stack OverflowLogs
To Reproduce
https://svelte.dev/repl/b07ef4b35880412ea63683c1d33947b5?version=3.12.1
Expected behavior
Svelte shouldn't attempt to assign to
input.files
Severity
Low, as it's easily worked around
The text was updated successfully, but these errors were encountered: