mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 11:32:38 +02:00
fix: fix Textarea trying to clear this.input
Co-authored-by: David Larlet <david@larlet.fr>
This commit is contained in:
parent
190cac3105
commit
06baeb718e
1 changed files with 3 additions and 1 deletions
|
@ -152,7 +152,9 @@ Fields.Textarea = class extends BaseElement {
|
|||
this.textarea.value = value
|
||||
}
|
||||
}
|
||||
|
||||
clear() {
|
||||
this.textarea.value = ''
|
||||
}
|
||||
value() {
|
||||
return this.textarea.value
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue