Skip to content

Commit

Permalink
feat: textbox
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Dec 1, 2024
1 parent 1b1fd27 commit 4d1f299
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/home/sorting/sorting-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ export class SortingManager {
textBox.type = "text";
textBox.id = `filter-${this._instanceId}`;
textBox.placeholder = "Search";
textBox.spellcheck = false;
textBox.autocapitalize = "off";
textBox.draggable = false;

// Handle CTRL+F
document.addEventListener("keydown", (event) => {
Expand Down

0 comments on commit 4d1f299

Please sign in to comment.