Skip to content
Snippets Groups Projects
Commit 4329750b authored by Trirst's avatar Trirst
Browse files

New image flake is appended to the list instead of unshifting it

parent 24a8868e
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ export default new Vuex.Store({
state.stateImageSnowflakes = array;
},
addStateImageSnowflake(state, hash) {
state.stateImageSnowflakes.unshift(hash);
state.stateImageSnowflakes.push(hash);
},
saveStateUser(state, payload) {
state.stateUser.id = payload.id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment