mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
Fix chart rendering with null or false values in group by
This commit is contained in:
parent
5c558f3b12
commit
4475a6795e
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ export default {
|
|||
this.dataSource.schema.properties
|
||||
).find((item) => item.metadata?.primary === true)
|
||||
const labels = this.result.map((item) => {
|
||||
if (item[`field_${groupByFieldId}`]) {
|
||||
return item[`field_${groupByFieldId}`]
|
||||
if (item[`field_${groupByFieldId}`] !== undefined) {
|
||||
return item[`field_${groupByFieldId}`] ?? ''
|
||||
}
|
||||
return item[`field_${primaryField.metadata.id}`]
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue