Explorar el Código

:recycle: fixing repack on destructure

tags/0.9.0
J hace 4 años
padre
commit
2541da3a9c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      vue-theme/src/store/modules/artist.js

+ 1
- 1
vue-theme/src/store/modules/artist.js Ver fichero

@@ -62,7 +62,7 @@ const actions = {
62 62
             if(sortType == sortTypes.alpha) {
63 63
                 repacked = _arrangeByAlpha(artists)
64 64
             }
65
-            commit('STORE_FETCHED_ARTISTS', { repacked })
65
+            commit('STORE_FETCHED_ARTISTS', { artists: repacked })
66 66
             commit('ARTISTS_LOADED', true)
67 67
         })
68 68
         return api.getByType({ type: 'artist', sort: sortType, params, cb: storeFetch })

Loading…
Cancelar
Guardar