summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/scripts/autocomplete.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/scripts/autocomplete.ts b/src/client/scripts/autocomplete.ts
index 924d6a62ee..c4bcc4b724 100644
--- a/src/client/scripts/autocomplete.ts
+++ b/src/client/scripts/autocomplete.ts
@@ -7,9 +7,9 @@ export class Autocomplete {
private suggestion: {
x: Ref<number>;
y: Ref<number>;
- q: Ref<string>;
+ q: Ref<string | null>;
close: Function;
- };
+ } | null;
private textarea: any;
private vm: any;
private currentType: string;
@@ -122,7 +122,7 @@ export class Autocomplete {
/**
* サジェストを提示します。
*/
- private async open(type: string, q: string) {
+ private async open(type: string, q: string | null) {
if (type != this.currentType) {
this.close();
}