Sfoglia il codice sorgente

:bug: get all missing arg

tags/0.9.0
J 4 anni fa
parent
commit
8f77f5461f
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      vue-theme/src/pages/list.vue

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

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

Loading…
Annulla
Salva