mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Et2Textarea: Fix height parameter
This commit is contained in:
parent
12f15ee121
commit
0ad19cbd80
@ -72,13 +72,13 @@ export class Et2Textarea extends Et2InputWidget(SlTextarea)
|
||||
connectedCallback()
|
||||
{
|
||||
super.connectedCallback();
|
||||
if(this.__width && this._inputNode)
|
||||
if(this.__width)
|
||||
{
|
||||
this._inputNode.style.width = this.__width;
|
||||
this.style.width = this.__width;
|
||||
}
|
||||
if(this.__height && this._inputNode)
|
||||
if(this.__height)
|
||||
{
|
||||
this._inputNode.style.height = this.__height;
|
||||
this.style.height = this.__height;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user