mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
* Filemanager: Fix unwanted, automatic comment "ask" when uploading to filemanager
This commit is contained in:
parent
3ed5a6b587
commit
b9e1f48db7
@ -305,7 +305,7 @@ var filemanagerAPP = /** @class */ (function (_super) {
|
||||
var widget = _event.data;
|
||||
var value = widget.getValue();
|
||||
value.conflict = _conflict;
|
||||
egw.json(_target, ['upload', value, _path, _conflict], this._upload_callback, this, true, this).sendRequest();
|
||||
egw.json(_target, ['upload', value, _path], this._upload_callback, this, true, this).sendRequest();
|
||||
widget.set_value('');
|
||||
}
|
||||
};
|
||||
|
@ -349,7 +349,7 @@ export class filemanagerAPP extends EgwApp
|
||||
let widget = _event.data;
|
||||
let value = widget.getValue();
|
||||
value.conflict = _conflict;
|
||||
egw.json(_target, ['upload', value, _path, _conflict],
|
||||
egw.json(_target, ['upload', value, _path],
|
||||
this._upload_callback, this, true, this
|
||||
).sendRequest();
|
||||
widget.set_value('');
|
||||
|
Loading…
Reference in New Issue
Block a user