Skip to content

Commit

Permalink
docs: Update columns.md (#5666)
Browse files Browse the repository at this point in the history
The usage of backticks inside of the header and cell links made it so that the text could not be properly parsed and rendered the links impossible to use.
With this change, the links are available again.
  • Loading branch information
squidjam committed Aug 3, 2024
1 parent 73f0057 commit a8d1971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can find the `column` objects in many places. They are often attached

#### Header and Cell Objects

Before you reach for one of the `table` instance APIs, consider if you actually need to retrieve either [`headers`](../headers) or [`cells`](../cells) instead of `columns`. If you are rending out the markup for your table, you will most likely want to reach for the APIs that return headers or cells instead of columns. The column objects themselves are not really meant to render out the headers or cells, but the `header` and `cell` objects will contain references to these `column` objects from which they can derive the necessary information to render their UI.
Before you reach for one of the `table` instance APIs, consider if you actually need to retrieve either [headers](../headers) or [cells](../cells) instead of `columns`. If you are rending out the markup for your table, you will most likely want to reach for the APIs that return headers or cells instead of columns. The column objects themselves are not really meant to render out the headers or cells, but the `header` and `cell` objects will contain references to these `column` objects from which they can derive the necessary information to render their UI.

```js
const column = cell.column; // get column from cell
Expand Down

0 comments on commit a8d1971

Please sign in to comment.