disable default spell checkers in editor

This commit is contained in:
catto 2024-04-15 21:10:39 +02:00
parent a6d61f6e54
commit c5423eea29
2 changed files with 5 additions and 3 deletions

View File

@ -46,8 +46,10 @@
</div> </div>
</div> </div>
<div class="editor"> <div class="editor">
<input id="create-tag" placeholder="Tag..." /> <input autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" id="create-tag"
<textarea id="create-input" placeholder="Type your note here..."></textarea> placeholder="Tag..." />
<textarea autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" id="create-input"
placeholder="Type your note here..."></textarea>
<p id="create-msg"></p> <p id="create-msg"></p>
<p style="white-space: pre-line" id="notes-list"></p> <p style="white-space: pre-line" id="notes-list"></p>

View File

@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "snotes-deck", "productName": "snotes-deck",
"version": "0.0.4" "version": "0.0.5"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {