diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-11 12:55:23 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-11 12:55:23 +0700 |
| commit | 91329828bba4f1d6aa8ddfb3e9f801f0d25a4c41 (patch) | |
| tree | 7164edb3c087e75fea982d4f76b19adb845ef0df /input/select.ts | |
| parent | 65eb8e99d6dfdfdf419254cbb7e26b7afe426691 (diff) | |
| download | pakakeh.ts-91329828bba4f1d6aa8ddfb3e9f801f0d25a4c41.tar.xz | |
input: use lower case for method name Set
Diffstat (limited to 'input/select.ts')
| -rw-r--r-- | input/select.ts | 4 |
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; } } |
