From 22b7e03d3b1c623e3d3e0d44dc89e1356bde893d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 3 May 2019 10:39:38 -0400 Subject: [PATCH] Disable spellcheck in the tag textarea --- modules/ui/raw_tag_editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ui/raw_tag_editor.js b/modules/ui/raw_tag_editor.js index b8b318153..77d9243c8 100644 --- a/modules/ui/raw_tag_editor.js +++ b/modules/ui/raw_tag_editor.js @@ -129,6 +129,7 @@ export function uiRawTagEditor(context) { .append('textarea') .attr('class', 'tag-text' + (_tagView !== 'text' ? ' hide' : '')) .call(utilNoAuto) + .attr('spellcheck', 'false') .merge(textarea); textarea