You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When triggering a directory on pagination higher than 1, the system remembers the pagination value.
For example: If we go to the directory on pagination position "4", the system remembers this position. Then if we go to the nested directory and by default we find ourselves in the "1" position of the pagination, the system doesn't reset this position ("4" remains in the memory). This behavior of the system causes the files not be displayed.
Make a correction in MediaList.vue in enterFolder method:
At the end of the method you need to trigger the function: this.handleCurrentChange(1);
The text was updated successfully, but these errors were encountered:
This should already be happening on line 218 of MediaList.vue. There is a watcher that watches VueRouter (a.k.a. $route; line 170) for changes and calls the function fetchMediaData. Do you have any error messages in your browser's console?
When triggering a directory on pagination higher than 1, the system remembers the pagination value.
For example: If we go to the directory on pagination position "4", the system remembers this position. Then if we go to the nested directory and by default we find ourselves in the "1" position of the pagination, the system doesn't reset this position ("4" remains in the memory). This behavior of the system causes the files not be displayed.
Make a correction in MediaList.vue in enterFolder method:
At the end of the method you need to trigger the function: this.handleCurrentChange(1);
The text was updated successfully, but these errors were encountered: