Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
fix: set lang attribute on textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Apr 17, 2021
1 parent ff967f9 commit 78bf3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/submit-form.js
Expand Up @@ -86,7 +86,7 @@ export default function SubmitForm({ languages, onSubmit, message, error, senten
<label htmlFor="sentences-input">
Add <a target="_blank" rel="noopener noreferrer" href="https://en.wikipedia.org/wiki/Public_domain">public domain</a> sentences
</label>
<textarea id="sentences-input" name="sentenceText" placeholder="One sentence per line" onChange={handleInputChange}/>
<textarea id="sentences-input" name="sentenceText" placeholder="One sentence per line" onChange={handleInputChange} lang={language}/>
</section>
<section>
<label htmlFor="source-input">
Expand Down

0 comments on commit 78bf3c0

Please sign in to comment.