mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix webcomponents did not load value
This commit is contained in:
parent
c68437c908
commit
8eb0f21893
@ -38,7 +38,6 @@ const Et2InputWidgetMixin = (superclass) =>
|
||||
{
|
||||
class Et2InputWidgetClass extends Et2Widget(superclass) implements et2_IInput, et2_IInputNode
|
||||
{
|
||||
protected _value : string | number | Object;
|
||||
protected _oldValue : string | number | Object;
|
||||
protected node : HTMLElement;
|
||||
|
||||
@ -112,7 +111,7 @@ const Et2InputWidgetMixin = (superclass) =>
|
||||
|
||||
set_value(new_value)
|
||||
{
|
||||
this._value = new_value;
|
||||
this.value = new_value;
|
||||
}
|
||||
|
||||
get_value()
|
||||
|
Loading…
Reference in New Issue
Block a user