Skip to content

Commit de5788c

Browse files
authoredDec 27, 2023
docs: Update column-sizing.md (#5232)
1 parent dd870a3 commit de5788c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/guide/column-sizing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ By default, the column resize mode is set to `"onEnd"`. This means that the `col
8989

9090
In React TanStack Table adapter, where achieving 60 fps column resizing renders can be difficult, depending on the complexity of your table or web page, the `"onEnd"` column resize mode can be a good default option to avoid stuttering or lagging while the user resizes columns. That is not to say that you cannot achieve 60 fps column resizing renders while using TanStack React Table, but you may have to do some extra memoization or other performance optimizations in order to achieve this.
9191

92-
> Advanced column resizing performance tips will be discussed [down below](#advancedcolumnresizingperformance).
92+
> Advanced column resizing performance tips will be discussed [down below](#advanced-column-resizing-performance).
9393
9494
If you want to change the column resize mode to `"onChange"` for immediate column resizing renders, you can do so with the `columnResizeMode` table option.
9595

@@ -135,7 +135,7 @@ How you apply these size styles to your markup is up to you, but it is pretty co
135135
>
136136
```
137137

138-
Though, as discussed in the [advanced column resizing performance section](#advancedcolumnresizingperformance), you may want to consider using CSS variables to apply column sizes to your markup.
138+
Though, as discussed in the [advanced column resizing performance section](#advanced-column-resizing-performance), you may want to consider using CSS variables to apply column sizes to your markup.
139139

140140
##### Column Resize APIs
141141

0 commit comments

Comments
 (0)
Please sign in to comment.