Skip to content

Commit db7c14f

Browse files
author
K-Dud
committed
lint
1 parent 9b6d6d1 commit db7c14f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

frontend-vue/src/core/filter.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export function filter(obj: any, query: string, key?: string | undefined): boole
2121
if (nestedResults.length) {
2222
return true;
2323
}
24-
}
25-
else if (typeof propValue === "object") {
24+
} else if (typeof propValue === "object") {
2625
return filter(propValue, query);
2726
} else if (typeof propValue === "string") {
2827
if (propValue.toLowerCase().includes(query?.toLowerCase())) {

0 commit comments

Comments
 (0)