Skip to content

Commit

Permalink
Merge pull request #5701 from nextcloud/feature/disable-spellcheck-in…
Browse files Browse the repository at this point in the history
…side-code-blocks
  • Loading branch information
juliushaertl authored Apr 19, 2024
2 parents 896168e + 9325801 commit a45243c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/nodes/CodeBlockView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@
</div>
</div>
<div :class="{'split-view': showCode && showPreview }">
<pre v-show="showCode" class="split-view__code"><NodeViewContent as="code" tabindex="-1" :contenteditable="isEditable" /></pre>
<pre v-show="showCode" class="split-view__code"><NodeViewContent spellcheck="false"
as="code"
tabindex="-1"
:contenteditable="isEditable" /></pre>
<div v-show="showPreview"
ref="preview"
class="split-view__preview"
Expand Down

0 comments on commit a45243c

Please sign in to comment.