Merge branch 'feature/send-again' of github.com:ONLYOFFICE/AppServer into feature/send-again

This commit is contained in:
Vlada Gazizova 2023-03-06 13:21:45 +03:00
commit 8d45abeffe

View File

@ -159,13 +159,13 @@ class FilesStore {
if (!(this.isLoading || this.operationAction))
switch (opt?.cmd) {
case "create":
this.wsModifyFolderCreate();
this.wsModifyFolderCreate(opt);
break;
case "update":
this.wsModifyFolderUpdate();
this.wsModifyFolderUpdate(opt);
break;
case "delete":
this.wsModifyFolderDelete();
this.wsModifyFolderDelete(opt);
break;
}