Browse Source

:recycle: experiment to not set loading state for list

tags/0.9.0
J 4 years ago
parent
commit
d58cd164a0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      vue-theme/src/store/modules/artist.js

+ 1
- 1
vue-theme/src/store/modules/artist.js View File

@@ -27,7 +27,7 @@ const actions = {
27 27
         return api.getByType({ type: 'artist', sort: sortType, params, cb: storeFetch })
28 28
     },
29 29
     getMoreArtists({ commit }, { sortType, params }) {
30
-        commit('ARTISTS_LOADED', false)
30
+        // commit('ARTISTS_LOADED', false)
31 31
         const storeFetch = (artists => {
32 32
             commit('ADD_TO_FETCHED_ARTISTS', { artists })
33 33
             commit('ARTISTS_LOADED', true)

Loading…
Cancel
Save