From 4329750bced07c394286ed53d0176e84b9e4efee Mon Sep 17 00:00:00 2001 From: Trirst <abeces968@gmail.com> Date: Tue, 7 Sep 2021 00:10:06 +0700 Subject: [PATCH] New image flake is appended to the list instead of unshifting it --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index c378efd..80e1b5d 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -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; -- GitLab