react-ace icon indicating copy to clipboard operation
react-ace copied to clipboard

Textarea has not attr "name"

Open williank opened this issue 2 years ago • 1 comments

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

williank avatar Feb 03 '24 18:02 williank

related to https://github.com/securingsincity/react-ace/issues/876

sKopheK avatar Jun 04 '25 08:06 sKopheK