mirror of
https://github.com/flarum/core.git
synced 2025-08-02 14:37:49 +02:00
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:
committed by
Alexander Skvortsov
parent
c702f5e228
commit
a291134da1
@@ -18,7 +18,7 @@ export default class EditCustomCssModal extends SettingsModal {
|
|||||||
})}
|
})}
|
||||||
</p>,
|
</p>,
|
||||||
<div className="Form-group">
|
<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>,
|
</div>,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user