Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/table-group/data-table/data-table-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ You can enable selecting rows with checkboxes with the `selectedRows` and `onSel

To customize the content of a table cell, use the `renderCell` prop.

It receives props described in <!-- @skip-link-checking -->[`CellRenderProps`](/table-group/data-table/data-table-api#cellrenderprops).
It receives props described in [`CellRenderProps`](/table-group/data-table/data-table-api#rendercell).

You can return either a custom React element to override the rendering entirely, or an object that will be applied as props to the cell.
If the returned object includes a children property, it will override the default cell content—otherwise, you can use it to apply custom attributes such as theming or data attributes.
Expand Down
2 changes: 1 addition & 1 deletion website/tools/check-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function extractLinks(content: string) {
// don't check commented links
const prev = token.children[i - 1];

if (prev && prev.type === 'text' && (prev.content.startsWith('<!--') || prev.content.endsWith('<!-- @skip-link-checking -->'))) {
if (prev && prev.type === 'text' && prev.content.startsWith('<!--')) {
continue;
}

Expand Down
Loading