Browse Source

:bug: get all missing arg

tags/0.9.0
J 4 years ago
parent
commit
8f77f5461f
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      vue-theme/src/pages/list.vue

+ 2
- 2
vue-theme/src/pages/list.vue View File

@@ -109,7 +109,7 @@ export default {
109 109
             }
110 110
 
111 111
             // Edge case for episodes
112
-            await this._getAll('episodes')
112
+            await this._getAll('episodes', this.$store)
113 113
 
114 114
             // Stop trying to load more posts
115 115
             if(res && !res.length) {
@@ -122,7 +122,7 @@ export default {
122 122
         async checkAndSetHero(type) {
123 123
             this._clearHero(this.$store)
124 124
 
125
-            await this._getAll('pages')
125
+            await this._getAll('pages', this.$store)
126 126
 
127 127
             // We always set a hero no matter what
128 128
             // Because the hero component will deal

Loading…
Cancel
Save