Skip to content

Commit

Permalink
Fix newly created lists not showing up on other pages automatically. C…
Browse files Browse the repository at this point in the history
…loses #1589.
  • Loading branch information
knadh committed Dec 23, 2023
1 parent 01acd38 commit 8f12c03
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/views/Lists.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ export default Vue.extend({
}).then((resp) => {
this.lists = resp;
});
// Also fetch the minimal lists for the global store that appears
// in dropdown menus on other pages like import and campaigns.
this.$api.getLists({ minimal: true, per_page: 'all' });
},
deleteList(list) {
Expand Down

0 comments on commit 8f12c03

Please sign in to comment.