Merge pull request #12554 from nextcloud/bugfix/12493/root-folder-switch
Do not switch to root folder if filelist is already shown
This commit is contained in:
commit
2e52ea5ad4
|
@ -653,8 +653,13 @@
|
|||
*/
|
||||
_onShow: function(e) {
|
||||
if (this.shown) {
|
||||
this._setCurrentDir('/', false);
|
||||
this.reload();
|
||||
if (e.itemId === this.id) {
|
||||
this._setCurrentDir('/', false);
|
||||
}
|
||||
// Only reload if we don't navigate to a different directory
|
||||
if (typeof e.dir === 'undefined' || e.dir === this.getCurrentDirectory()) {
|
||||
this.reload();
|
||||
}
|
||||
}
|
||||
this.shown = true;
|
||||
},
|
||||
|
|
|
@ -154,7 +154,12 @@
|
|||
this.$currentContent = $('#app-content-' + (typeof itemView === 'string' && itemView !== '' ? itemView : itemId));
|
||||
this.$currentContent.removeClass('hidden');
|
||||
if (!options || !options.silent) {
|
||||
this.$currentContent.trigger(jQuery.Event('show'));
|
||||
this.$currentContent.trigger(jQuery.Event('show', {
|
||||
itemId: itemId,
|
||||
previousItemId: oldItemId,
|
||||
dir: itemDir,
|
||||
view: itemView
|
||||
}));
|
||||
this.$el.trigger(
|
||||
new $.Event('itemChanged', {
|
||||
itemId: itemId,
|
||||
|
|
Loading…
Reference in New Issue