aboutsummaryrefslogtreecommitdiff
path: root/input/select.ts
diff options
context:
space:
mode:
Diffstat (limited to 'input/select.ts')
-rw-r--r--input/select.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/input/select.ts b/input/select.ts
index 4882448..7fc42c5 100644
--- a/input/select.ts
+++ b/input/select.ts
@@ -185,4 +185,9 @@ export class WuiInputSelect {
this.value = value
}
}
+
+ // Set the input value.
+ Set(v: string) {
+ this.el_input.value = v
+ }
}