diff --git a/frontend/src/views/falukant/PoliticsView.vue b/frontend/src/views/falukant/PoliticsView.vue index 4ff4a3f..4b6c318 100644 --- a/frontend/src/views/falukant/PoliticsView.vue +++ b/frontend/src/views/falukant/PoliticsView.vue @@ -206,13 +206,13 @@ export default { }, methods: { onTabChange(tab) { - if (tab === 'current' && !this.currentPositions.length) { + if (tab === 'current') { this.loadCurrentPositions(); } - if (tab === 'openPolitics' && !this.openPolitics.length) { + if (tab === 'openPolitics') { this.loadOpenPolitics(); } - if (tab === 'elections' && !this.elections.length) { + if (tab === 'elections') { this.loadElections(); } },