Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SSR of textarea value shouldn't be an attribute #2915

Closed
domingues opened this issue May 31, 2019 · 0 comments · Fixed by #2975
Closed

SSR of textarea value shouldn't be an attribute #2915

domingues opened this issue May 31, 2019 · 0 comments · Fixed by #2975
Labels

Comments

@domingues
Copy link

domingues commented May 31, 2019

The server side render of

<script>
    let value = 'hello';
</script>
<textarea bind:value></textarea>

should be

<textarea>hello</textarea>

but right now is

<textarea value="hello"></textarea>

which don't render if JavaScript is disabled.

@Conduitry Conduitry added the bug label Jun 3, 2019
This was referenced Jun 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants