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

Fix naming bug

parent 9c059c58
No related branches found
No related tags found
2 merge requests!11Add ability to read reports,!10Add more users filters
......@@ -76,10 +76,10 @@ const users = {
},
async ToggleUsersFilter({ commit, dispatch, state }, filters) {
const defaultFilters = {
localUsersOnly: false,
externalUsersOnly: false,
activeUsersOnly: false,
deactivatedUsersOnly: false
local: false,
external: false,
active: false,
deactivated: false
}
const currentFilters = { ...defaultFilters, ...filters }
commit('SET_USERS_FILTERS', currentFilters)
......
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