Skip to content

Commit

Permalink
chore: update config
Browse files Browse the repository at this point in the history
  • Loading branch information
sadmann7 committed Jul 28, 2024
1 parent 47bdea7 commit dd349d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Shadcn Table](https://table.sadmn.com)

This is a shadcn table component with server-side sorting, filtering, and pagination. It is bootstrapped with `create-t3-app`.
This is a shadcn table with server-side sorting, filtering, and pagination. It is bootstrapped with `create-t3-app`.

[![Shadcn Table](./public/images/screenshot.png)](https://table.sadmn.com)

Expand Down
2 changes: 1 addition & 1 deletion src/components/data-table/data-table-pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function DataTablePagination<TData>({
<SelectValue placeholder={table.getState().pagination.pageSize} />
</SelectTrigger>
<SelectContent side="top">
{pageSizeOptions?.map((pageSize) => (
{pageSizeOptions.map((pageSize) => (
<SelectItem key={pageSize} value={`${pageSize}`}>
{pageSize}
</SelectItem>
Expand Down
2 changes: 1 addition & 1 deletion src/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export type SiteConfig = typeof siteConfig
export const siteConfig = {
name: "Table",
description:
"Shadcn table component with server side sorting, pagination, and filtering",
"Shadcn table with server side sorting, pagination, and filtering",
url:
env.NODE_ENV === "development"
? "http://localhost:3000"
Expand Down

0 comments on commit dd349d4

Please sign in to comment.