mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-12 08:19:26 +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
ddbcb42c70
commit
5efbf26267
@ -232,7 +232,11 @@ export class Et2VfsSelectDialog
|
|||||||
this._dialog.panel.style.height = "40em";
|
this._dialog.panel.style.height = "40em";
|
||||||
});
|
});
|
||||||
// Get file list
|
// Get file list
|
||||||
this.startSearch();
|
if(this.open)
|
||||||
|
{
|
||||||
|
debugger;
|
||||||
|
this.startSearch();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected willUpdate(changedProperties : PropertyValues)
|
protected willUpdate(changedProperties : PropertyValues)
|
||||||
|
Loading…
Reference in New Issue
Block a user