mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 02:42:30 +02:00
Filemanager: Push was not correctly updating file list when directory was added/deleted
This commit is contained in:
@ -20,7 +20,7 @@ import {et2_nextmatch_controller} from "../../api/js/etemplate/et2_extension_nex
|
||||
import {egw} from "../../api/js/jsapi/egw_global";
|
||||
import {et2_selectbox} from "../../api/js/etemplate/et2_widget_selectbox";
|
||||
import {et2_textbox} from "../../api/js/etemplate/et2_widget_textbox";
|
||||
import {ExposeMixin, MIME_REGEX} from "../../api/js/etemplate/Expose/ExposeMixin";
|
||||
import {MIME_REGEX} from "../../api/js/etemplate/Expose/ExposeMixin";
|
||||
|
||||
/**
|
||||
* UI for filemanager
|
||||
@ -823,7 +823,7 @@ export class filemanagerAPP extends EgwApp
|
||||
*/
|
||||
_do_action_callback(_data)
|
||||
{
|
||||
if(_data.action == "delete" && this.egw.pushAvailable())
|
||||
if(this.egw.pushAvailable())
|
||||
{
|
||||
// No need to refresh, push will handle it
|
||||
this.egw.message(_data.msg)
|
||||
|
Reference in New Issue
Block a user