mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Et2VfsSelectDialog: Only start search when first loaded if dialog is open
Previously it always started search, even if created closed.
This commit is contained in:
parent
92225d8fc6
commit
84ef1ae2c8
@ -232,7 +232,11 @@ export class Et2VfsSelectDialog
|
||||
this._dialog.panel.style.height = "40em";
|
||||
});
|
||||
// Get file list
|
||||
this.startSearch();
|
||||
if(this.open)
|
||||
{
|
||||
debugger;
|
||||
this.startSearch();
|
||||
}
|
||||
}
|
||||
|
||||
protected willUpdate(changedProperties : PropertyValues)
|
||||
|
Loading…
Reference in New Issue
Block a user