Client:FilesActionStore Fixed trash navigation

This commit is contained in:
Akmal Isomadinov 2024-08-27 14:50:32 +05:00
parent 852f506fba
commit eef453aa3a

View File

@ -2561,10 +2561,11 @@ class FilesActionStore {
return this.moveToRoomsPage();
}
if (
categoryType === CategoryType.Personal ||
categoryType === CategoryType.Trash
) {
if (categoryType === CategoryType.Trash) {
return;
}
if (categoryType === CategoryType.Personal) {
return this.backToParentFolder();
}