Skip to content

Commit 80f684b

Browse files
committed
Remove .trim to allow space as changes
1 parent 48dedee commit 80f684b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class RemoteInputElement extends HTMLElement {
6565

6666
async fetchResults(checkCurrentQuery: boolean = true) {
6767
if (!this.input) return
68-
const query = this.input.value.trim()
68+
const query = this.input.value
6969
if (checkCurrentQuery && this.currentQuery === query) return
7070
this.currentQuery = query
7171
const src = this.src

0 commit comments

Comments
 (0)