fix: don't spellcheck custom LESS

This should stop browsers from "correcting" code, and from converting regular quotes to "smart" quotes.
This commit is contained in:
Alexander Skvortsov 2022-01-08 18:31:44 -05:00 committed by Alexander Skvortsov
parent c702f5e228
commit a291134da1

View File

@ -18,7 +18,7 @@ export default class EditCustomCssModal extends SettingsModal {
})}
</p>,
<div className="Form-group">
<textarea className="FormControl" rows="30" bidi={this.setting('custom_less')} />
<textarea className="FormControl" rows="30" bidi={this.setting('custom_less')} spellcheck={false} />
</div>,
];
}