Browse Source

Merge pull request #6537 from nextcloud/fix-2332-breadcrumb-refresh-current-dir

Force refresh file list when clicking on breadcrumb even if target directory equals current directory.
tags/v13.0.0beta1
Morris Jobke 6 years ago
parent
commit
bdba9871d0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/files/js/filelist.js

+ 1
- 1
apps/files/js/filelist.js View File

@@ -837,7 +837,7 @@

if ($targetDir !== undefined && e.which === 1) {
e.preventDefault();
this.changeDirectory($targetDir);
this.changeDirectory($targetDir, true, true);
this.updateSearch();
}
},

Loading…
Cancel
Save