Client - filter on username in administration

This commit is contained in:
Sam
2022-03-13 10:52:10 +01:00
parent 08d412bddf
commit f241504b8f
7 changed files with 137 additions and 5 deletions

View File

@ -45,6 +45,11 @@ export const getQuery = (
orderByList,
defaultOrderBy
)
if (typeof locationQuery.q === 'string') {
query.q = locationQuery.q
} else {
delete query.q
}
return query
}