aboutsummaryrefslogtreecommitdiff
path: root/input/select.ts
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-11-11 12:55:23 +0700
committerShulhan <ms@kilabit.info>2023-11-11 12:55:23 +0700
commit91329828bba4f1d6aa8ddfb3e9f801f0d25a4c41 (patch)
tree7164edb3c087e75fea982d4f76b19adb845ef0df /input/select.ts
parent65eb8e99d6dfdfdf419254cbb7e26b7afe426691 (diff)
downloadpakakeh.ts-91329828bba4f1d6aa8ddfb3e9f801f0d25a4c41.tar.xz
input: use lower case for method name Set
Diffstat (limited to 'input/select.ts')
-rw-r--r--input/select.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/select.ts b/input/select.ts
index e874a29..92bce8f 100644
--- a/input/select.ts
+++ b/input/select.ts
@@ -191,8 +191,8 @@ export class WuiInputSelect {
return true;
}
- // Set the input value.
- Set(v: string) {
+ // set the input value.
+ set(v: string) {
this.el_input.value = v;
}
}