Skip to content

Commit 90c0734

Browse files
fix: handle undefined case in filtering logic (#1650)
Co-authored-by: Manikanta Thummuri <postbox5827@gmail.com>
1 parent 990e028 commit 90c0734

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/service.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,8 @@ export class Service {
305305
return itemValue === paramValue
306306
case 'boolean':
307307
return itemValue === (paramValue === 'true')
308+
case 'undefined':
309+
return false
308310
}
309311
}
310312
}

0 commit comments

Comments
 (0)