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.
This commit is contained in:
Morris Jobke 2017-09-18 13:43:42 +02:00 提交者 GitHub
當前提交 bdba9871d0

查看文件

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