From acc9f5c5055db585f0fcfdb2c17f035ceb668bdb Mon Sep 17 00:00:00 2001 From: squidjam Date: Wed, 17 Jul 2024 17:53:03 +0200 Subject: [PATCH] Update columns.md 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. --- docs/guide/columns.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/columns.md b/docs/guide/columns.md index ca8769b7d4..a7a3b9f2fe 100644 --- a/docs/guide/columns.md +++ b/docs/guide/columns.md @@ -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 @@ -69,4 +69,4 @@ There are dozens of Column APIs that you can use to interact with the table stat Don't necessarily use `column` objects to render `headers` or `cells` directly. Instead, use the [`header](../headers) and [`cell`](../cells) objects, as discussed above. -But if you are just rendering a list of columns somewhere else in your UI for something like a column visibility menu or something similar, you can just map over a columns array and render out the UI as you normally would. \ No newline at end of file +But if you are just rendering a list of columns somewhere else in your UI for something like a column visibility menu or something similar, you can just map over a columns array and render out the UI as you normally would.