Fix admin tests

This commit is contained in:
Wolfgang Huß 2022-04-19 15:13:59 +02:00
parent 145989e284
commit 3344dfc771
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ describe('UserSearch', () => {
searchText: '',
currentPage: 1,
pageSize: 25,
isEmailChecked: false,
isEmailChecked: true,
isDeleted: null,
},
}),

View File

@ -85,7 +85,7 @@ export default {
searchText: this.criteria,
currentPage: this.currentPage,
pageSize: this.perPage,
isEmailChecked: !this.filterCheckedEmails, // Wolle: has this boolean really to be negated as well?
isEmailChecked: this.filterCheckedEmails,
isDeleted: this.filterDeletedUser,
},
fetchPolicy: 'no-cache',