We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b81cf82 commit 2e3bfaeCopy full SHA for 2e3bfae
packages/bootstrap-vue-3/src/components/BTable/itemHelper.ts
@@ -96,7 +96,8 @@ const useItemHelper = () => {
96
(item) =>
97
Object.entries(item).filter((item) => {
98
const [key, val] = item
99
- if (key[0] === '_' || (filterable.length > 0 && !filterable.includes(key))) return false
+ if (!val || key[0] === '_' || (filterable.length > 0 && !filterable.includes(key)))
100
+ return false
101
const itemValue: string =
102
typeof val === 'object'
103
? JSON.stringify(Object.values(val))
0 commit comments