securingsincity / react-ace

React Ace Component

Home Page:http://securingsincity.github.io/react-ace/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Textarea has not attr "name"

williank opened this issue · comments

The textarea has not attr "name", any solution ?

<textarea class="ace_text-input" wrap="off" autocorrect="off" autocapitalize="off" spellcheck="false" style="opacity: 0; font-size: 1px; height: 1px; width: 1px; top: 112px; left: 91px;" aria-haspopup="false" aria-autocomplete="both" role="textbox"></textarea>
<AceEditor
  mode="python"
  theme="github"
  id="script"
  name="script"
  height="60vh"
  width="100%"
  fontSize={14}
  showPrintMargin={true}
  showGutter={true}
  highlightActiveLine={true}
  value={value}
  setOptions={{
    enableBasicAutocompletion: true,
    enableLiveAutocompletion: true,
    enableSnippets: false,
    showLineNumbers: true,
    tabSize: 2,
  }}
  onChange={onChange}
/>