Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.

fix typo in readme #110

Merged
merged 1 commit into from
Dec 11, 2022
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ The `Table` has some additional properties to tweak its front-end behaviour.
:striped="true"
:prevent-overlapping-requests="false"
:input-debounce-ms="1000"
:prevent-scroll="true"
:preserve-scroll="true"
/>
</template>
```
Expand All @@ -285,7 +285,7 @@ The `Table` has some additional properties to tweak its front-end behaviour.
| striped | Adds a *striped* layout to the table. | `false` |
| preventOverlappingRequests | Cancels a previous visit on new user input to prevent an inconsistent state. | `true` |
| inputDebounceMs | Number of ms to wait before refreshing the table on user input. | 350 |
| preventScroll | Configures the [Scroll preservation](https://inertiajs.com/scroll-management#scroll-preservation) behavior. You may also pass `table-top` to this property to scroll to the top of the table on new data. | false |
| preserveScroll | Configures the [Scroll preservation](https://inertiajs.com/scroll-management#scroll-preservation) behavior. You may also pass `table-top` to this property to scroll to the top of the table on new data. | false |

#### Custom column cells

Expand Down