Skip to content

Commit

Permalink
fix: reload buckets when opening Buckets view
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Nov 22, 2023
1 parent f8f242f commit 51330e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/Buckets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ export default {
},
},
mounted: async function () {
await this.bucketsStore.ensureLoaded();
// load or reload buckets on mount
await this.bucketsStore.loadBuckets();
},
methods: {
isRecent: function (date) {
Expand Down

1 comment on commit 51330e4

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.3b11 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.3b11 (click to expand)

Please sign in to comment.