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

Commit

Permalink
Fix pivot table setup verbose name
Browse files Browse the repository at this point in the history
  • Loading branch information
maqian committed Jan 16, 2020
1 parent df66066 commit 45bf072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function PivotTable(element, props) {
$(this)[0].textContent = verboseMap[s] || s;
};
$container.find('thead tr:first th').each(replaceCell);
$container.find('thead tr th:first-child').each(replaceCell);
$container.find('thead tr th').each(replaceCell);

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

0 comments on commit 45bf072

Please sign in to comment.