mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 14:30:05 +01:00
Fix navigating through paths no longer possible for vfsSelect dialog
This commit is contained in:
parent
11894b0868
commit
7f7b5282aa
@ -250,12 +250,8 @@ export class vfsSelectUI extends EgwApp
|
|||||||
}
|
}
|
||||||
else if (widget.value.is_dir) // true for "httpd/unix-directory" and "egw/*"
|
else if (widget.value.is_dir) // true for "httpd/unix-directory" and "egw/*"
|
||||||
{
|
{
|
||||||
let path = null;
|
let path = widget.getRoot().getWidgetById("path");
|
||||||
// Cannot do this, there are multiple widgets named path
|
|
||||||
// widget.getRoot().getWidgetById("path");
|
|
||||||
widget.getRoot().iterateOver(function(widget) {
|
|
||||||
if(widget.id == "path") path = widget;
|
|
||||||
},null, Et2Textbox);
|
|
||||||
if(path)
|
if(path)
|
||||||
{
|
{
|
||||||
path.set_value(widget.value.path);
|
path.set_value(widget.value.path);
|
||||||
|
Loading…
Reference in New Issue
Block a user