securingsincity / react-ace

React Ace Component
http://securingsincity.github.io/react-ace/
MIT License
4.02k stars 603 forks source link

Textarea has not attr "name" #1850

Open williank opened 6 months ago

williank commented 6 months ago

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

<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}
/>