Skip to content
Snippets Groups Projects
Commit 5f0289c3 authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Fix filter logic to work with multiple choice on different pages

parent c425cd8a
No related branches found
No related tags found
No related merge requests found
......@@ -21,14 +21,9 @@ const users = {
SET_LOADING: (state, status) => {
state.loading = status
},
SWAP_USER: (state, user) => {
const usersWithoutSwapped = state.fetchedUsers.filter(u => {
return u.id !== user.id
})
state.fetchedUsers = [...usersWithoutSwapped, user].sort((a, b) =>
a.nickname.localeCompare(b.nickname)
)
SWAP_USER: (state, updatedUser) => {
const updated = state.fetchedUsers.map(user => user.id === updatedUser.id ? updatedUser : user)
state.fetchedUsers = updated.sort((a, b) => a.nickname.localeCompare(b.nickname))
},
SET_COUNT: (state, count) => {
state.totalUsersCount = count
......
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