Skip to content

Commit

Permalink
[5.x] Fix asset browser history navigation (#10948)
Browse files Browse the repository at this point in the history
  • Loading branch information
daun authored Oct 14, 2024
1 parent 6be88fb commit ffe4cc1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/js/components/assets/Browser/Browser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,10 @@ export default {
this.loadAssets();
},
selectedPath(selectedPath) {
this.path = selectedPath;
},
parameters(after, before) {
if (this.initializing || JSON.stringify(before) === JSON.stringify(after)) return;
this.loadAssets();
Expand Down

0 comments on commit ffe4cc1

Please sign in to comment.