mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
fix: dataTablesPane cell render undefine when the dot in metric label (#15817)
* fix: dataTablesPane cell render undefine when the dot in metric label * fix UT
This commit is contained in:
@@ -122,7 +122,7 @@ export const useTableColumns = (
|
||||
? Object.keys(data[0]).map(
|
||||
key =>
|
||||
({
|
||||
accessor: key,
|
||||
accessor: row => row[key],
|
||||
Header: key,
|
||||
Cell: ({ value }) => {
|
||||
if (value === true) {
|
||||
|
||||
Reference in New Issue
Block a user