-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
const table = {
title: this.settings.title,
headers: this.settings?.headers.map((header: any) => {
const arrow = header.property === orders?.orderBy ? (orders?.orderType === 'ASC' ? ' ↑' : ' ↓') : '';
return {
...header,
label: header.label + arrow,
};
}),
rows: this.getTableData(rows),
padding: 1,
};
the sort icon in the header is not displayed I think that pdfkit-table does not support special characters, how can I fix it?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels