Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit 45bf072

Browse files
author
maqian
committed
Fix pivot table setup verbose name
1 parent df66066 commit 45bf072

File tree

1 file changed

+1
-1
lines changed
  • packages/superset-ui-legacy-plugin-chart-pivot-table/src

1 file changed

+1
-1
lines changed

packages/superset-ui-legacy-plugin-chart-pivot-table/src/PivotTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function PivotTable(element, props) {
6161
$(this)[0].textContent = verboseMap[s] || s;
6262
};
6363
$container.find('thead tr:first th').each(replaceCell);
64-
$container.find('thead tr th:first-child').each(replaceCell);
64+
$container.find('thead tr th').each(replaceCell);
6565

6666
// jQuery hack to format number
6767
$container.find('tbody tr').each(function eachRow() {

0 commit comments

Comments
 (0)