Skip to content

Commit

Permalink
fix(filter): don't return entire object for undefined values
Browse files Browse the repository at this point in the history
fixes #19260
  • Loading branch information
KaelWD committed Feb 22, 2024
1 parent f6371d8 commit ce127c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/composables/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function filterItems (
const filterKeys = keys || Object.keys(transformed)

for (const key of filterKeys) {
const value = getPropertyFromItem(transformed, key, transformed)
const value = getPropertyFromItem(transformed, key)
const keyFilter = options?.customKeyFilter?.[key]

match = keyFilter
Expand Down

0 comments on commit ce127c4

Please sign in to comment.