Skip to content

Commit

Permalink
fix filter (#182)
Browse files Browse the repository at this point in the history
* fix filter

---------

Co-authored-by: volar <[email protected]>
  • Loading branch information
volarname and volar authored Jul 1, 2024
1 parent 11aed44 commit 7986d8e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"cy:open": "CYPRESS_CACHE_FOLDER='node_modules/.cache/Cypress' yarn cypress open -C cypress/config/cypress.config.ts"
},
"dependencies": {
"@anzusystems/common-admin": "1.47.0-beta.9",
"@anzusystems/common-admin": "1.47.0-beta.10",
"@mdi/font": "7.4.47",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
Expand Down
2 changes: 1 addition & 1 deletion src/model/common/filter/AnzuUserFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const makeFilter = makeFilterHelper('common', 'anzuUser')

const filter = reactive({
id: {
...makeFilter({ name: 'id' }),
...makeFilter({ name: 'id', default: null }),
},
email: {
...makeFilter({ name: 'email', variant: 'startsWith' }),
Expand Down
2 changes: 1 addition & 1 deletion src/model/common/filter/PermissionGroupFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const makeFilter = makeFilterHelper('common', ENTITY)

const filter = reactive({
id: {
...makeFilter({ name: 'id' }),
...makeFilter({ name: 'id', default: null }),
},
title: {
...makeFilter({ name: 'title' }),
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ __metadata:
languageName: node
linkType: hard

"@anzusystems/common-admin@npm:1.47.0-beta.9":
version: 1.47.0-beta.9
resolution: "@anzusystems/common-admin@npm:1.47.0-beta.9"
"@anzusystems/common-admin@npm:1.47.0-beta.10":
version: 1.47.0-beta.10
resolution: "@anzusystems/common-admin@npm:1.47.0-beta.10"
peerDependencies:
"@vuelidate/core": 2.0.3
"@vuelidate/validators": 2.0.4
Expand All @@ -41,7 +41,7 @@ __metadata:
optional: true
vue-router:
optional: true
checksum: 10/d48539889cf42e9b99180d6bbcafc183b8b5c9ef334ace6327fa6f9b79fec1db984c4a283a5d7c9bef287a33faec33ae7edadb6a933a27c3054754db12fc97a8
checksum: 10/c0c3b4012b63ad9b95fa198456bb9831f3f2eacbf66475b4f4e4061390df01ef9d1db54da239e405d17666ead7a7eab007eb15bc21667beb1ebb0ab4de9a1243
languageName: node
linkType: hard

Expand Down Expand Up @@ -1974,7 +1974,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "adam-admin@workspace:."
dependencies:
"@anzusystems/common-admin": "npm:1.47.0-beta.9"
"@anzusystems/common-admin": "npm:1.47.0-beta.10"
"@cypress/grep": "npm:^4.0.2"
"@intlify/unplugin-vue-i18n": "npm:^4.0.0"
"@mdi/font": "npm:7.4.47"
Expand Down

0 comments on commit 7986d8e

Please sign in to comment.