mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Avoid error setting placeholder
This commit is contained in:
parent
ff6d0ef785
commit
3d2e20ce0a
@ -221,7 +221,10 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(ValidateMixin(
|
||||
|
||||
set placeholder(new_value)
|
||||
{
|
||||
this._searchNode.placeholder = new_value;
|
||||
if(this._searchNode)
|
||||
{
|
||||
this._searchNode.placeholder = new_value;
|
||||
}
|
||||
}
|
||||
|
||||
protected _bindListeners()
|
||||
|
Loading…
Reference in New Issue
Block a user